I have this text block:
const line = "Hello\nworld";
Now I need to include it in a component like this:
<Text
numberOfLines={1}
ellipsizeMode="tail"
style={[styles.lastMessageText, { color: colors.backdrop }]}
>
{line}
</Text>
...
lastMessageText: {
maxWidth: "35%",
fontFamily: "OpenSans",
fontSize: 12.5,
}
Is there a way to prevent the line break and display the full text in one line?