问题 I am developing react-native application. In that, We are showing some description on Text , It may be number of lines. So, If data has more than 3 lines, I have to show More and Less if it's expanded. <FlatList style={styles.faltList} showsVerticalScrollIndicator data={data} extraData={this.state} renderItem={({ item, index }) => ( <View style={styles.flatListCell}> <Text style={styles.description}>{item.description}</Text> </View> </View> ) } ItemSeparatorComponent={() => ( <View style={{