I am having trouble displaying the last messages in my simple contact list as the text is getting cut off the screen. Below is the code I am using:
(the readableTimestamp should be positioned behind the text.)
View
style={{
fontSize: 16,
backgroundColor: Green,
flexDirection: "row",
flex: 1,
}}>
<Text
numberOfLines={1}
style={{
flex: 1,
fontSize: 16,
}}>
{item.message}
</Text>
<View style={{marginRight: 20, backgroundColor: Yellow}}>
<Text style={{fontSize: 16, color: 'blue'}}>{item.readableTimestamp}</Text>
</View>
</View>