Skip to content

Instantly share code, notes, and snippets.

@arekko
Last active July 24, 2019 11:39
Show Gist options
  • Save arekko/64b29b29e85a8f3158b4ad3202197f83 to your computer and use it in GitHub Desktop.
Save arekko/64b29b29e85a8f3158b4ad3202197f83 to your computer and use it in GitHub Desktop.
React Native Text wrapping solution
<View style={{ flexDirection: "row" }}>
<Text numberOfLines={1} style={{ flex: 1, textAlign: "left" }}>
{title}
</Text>
<Text style={{ textAlign: "right" }}>{duration}</Text>
</View>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment