Turn composer character counter into a countdown

zio/stable
Paul Frazee 2022-11-23 13:07:09 -06:00
parent f41ba844b3
commit 23d98b9557
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ export const ComposePost = observer(function ComposePost({
style={[s.flexRow, {alignItems: 'center'}, s.pt10, s.pb10, s.pr5]}> style={[s.flexRow, {alignItems: 'center'}, s.pt10, s.pb10, s.pr5]}>
<View style={s.flex1} /> <View style={s.flex1} />
<Text style={[s.mr10, {color: progressColor}]}> <Text style={[s.mr10, {color: progressColor}]}>
{text.length} / {MAX_TEXT_LENGTH} {MAX_TEXT_LENGTH - text.length}
</Text> </Text>
<View> <View>
<ProgressCircle <ProgressCircle