Created
September 3, 2019 13:56
-
-
Save vovkasm/301677818adf2eeca86cd644df5b32d1 to your computer and use it in GitHub Desktop.
Poor RN text overflow behavior :-(
This file contains 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
funciton MyComp() { | |
return ( | |
<View style={{ flexDirection: 'row', borderColor: 'blue', borderWidth: StyleSheet.hairlineWidth }}> | |
<View style={{ width: 100, height: 100, backgroundColor: 'green' }} /> | |
<Text>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ultricies finibus elementum.</Text> | |
</View> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
RN (with its defaults)
Web (with web defaults)
Web (with min-width)