Browse Source

Fix Preview issue with TextComposerReplyPreview

pull/3758/head
Benoit Marty 2 days ago
parent
commit
b79ab2e1e5
  1. 12
      libraries/textcomposer/impl/src/main/kotlin/io/element/android/libraries/textcomposer/TextComposer.kt

12
libraries/textcomposer/impl/src/main/kotlin/io/element/android/libraries/textcomposer/TextComposer.kt

@ -576,15 +576,21 @@ 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 {
PreviewColumn(
items = persistentListOf(
aMessageComposerModeReply(
replyToDetails = inReplyToDetails,
),
)
) { composerMode ->
ATextComposer( ATextComposer(
state = aTextEditorStateRich(), state = aTextEditorStateRich(),
voiceMessageState = VoiceMessageState.Idle, voiceMessageState = VoiceMessageState.Idle,
composerMode = aMessageComposerModeReply( composerMode = composerMode,
replyToDetails = inReplyToDetails,
),
enableVoiceMessages = true, enableVoiceMessages = true,
) )
} }
}
@PreviewsDayNight @PreviewsDayNight
@Composable @Composable

Loading…
Cancel
Save