Last active
July 24, 2019 11:39
-
-
Save arekko/64b29b29e85a8f3158b4ad3202197f83 to your computer and use it in GitHub Desktop.
React Native Text wrapping solution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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