Fix Preview issue with TextComposerReplyPreview
This commit is contained in:
parent
d22072a606
commit
87dba718be
1 changed files with 14 additions and 8 deletions
|
|
@ -576,14 +576,20 @@ internal fun MarkdownTextComposerEditPreview() = ElementPreview {
|
||||||
@PreviewsDayNight
|
@PreviewsDayNight
|
||||||
@Composable
|
@Composable
|
||||||
internal fun TextComposerReplyPreview(@PreviewParameter(InReplyToDetailsProvider::class) inReplyToDetails: InReplyToDetails) = ElementPreview {
|
internal fun TextComposerReplyPreview(@PreviewParameter(InReplyToDetailsProvider::class) inReplyToDetails: InReplyToDetails) = ElementPreview {
|
||||||
ATextComposer(
|
PreviewColumn(
|
||||||
state = aTextEditorStateRich(),
|
items = persistentListOf(
|
||||||
voiceMessageState = VoiceMessageState.Idle,
|
aMessageComposerModeReply(
|
||||||
composerMode = aMessageComposerModeReply(
|
replyToDetails = inReplyToDetails,
|
||||||
replyToDetails = inReplyToDetails,
|
),
|
||||||
),
|
)
|
||||||
enableVoiceMessages = true,
|
) { composerMode ->
|
||||||
)
|
ATextComposer(
|
||||||
|
state = aTextEditorStateRich(),
|
||||||
|
voiceMessageState = VoiceMessageState.Idle,
|
||||||
|
composerMode = composerMode,
|
||||||
|
enableVoiceMessages = true,
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@PreviewsDayNight
|
@PreviewsDayNight
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue