fixing wrong in progress reply text colour for material you

This commit is contained in:
Adam Brown 2022-10-05 21:36:44 +01:00
parent 0a982ff53f
commit 1e060dad44
1 changed files with 2 additions and 2 deletions

View File

@ -674,12 +674,12 @@ private fun TextComposer(state: ComposerState.Text, onTextChange: (String) -> Un
fontSize = 11.sp,
text = replyName,
maxLines = 1,
color = SmallTalkTheme.extendedColors.onSelfBubble
color = SmallTalkTheme.extendedColors.onOthersBubble
)
Text(
text = it.content,
color = SmallTalkTheme.extendedColors.onSelfBubble,
color = SmallTalkTheme.extendedColors.onOthersBubble,
fontSize = 14.sp,
maxLines = 2,
modifier = Modifier.wrapContentSize(),