Skip to content

Commit

Permalink
fixing wrong in progress reply text colour for material you
Browse files Browse the repository at this point in the history
  • Loading branch information
ouchadam committed Oct 5, 2022
1 parent 0a982ff commit 1e060da
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 1e060da

Please sign in to comment.