Answers for "react native text in same line"

1

text number of lines react native

<Text numberOfLines={2} ellipsizeMode='tail'>
  long string
</Text>
Posted by: Guest on February-10-2021
0

text and icon on same line react native

<View style={{ flexDirection: 'row', justifyContent: 'space-between' }}>
    <Icon name="ios-chat" size={20} />
    <Text>
      2 replies
    </Text>
 </View>
Posted by: Guest on September-07-2021

Code answers related to "react native text in same line"

Code answers related to "Javascript"

Browse Popular Code Answers by Language