Yes
Yes
OS: macOS Sierra 10.12.6
Node: 8.7.0
Yarn: Not Found
npm: 5.5.1
Watchman: 4.9.0
Xcode: Xcode 9.1 Build version 9B55
Android Studio: 2.3 AI-162.4069837
react-native: 0.49.5
react: 16.0.0-beta.5
1.Tried aligning through View Component
2.Tried aligning through Text Component
Text should be center aligned
Text not aligning to center
If the <Text> is multilined than it is not center aligned
<View style = {{
justifyContent: 'center',
alignItems: 'center'}}>
<Text style={{alignSelf:'center',fontSize:20,justifyContent:'center',alignItems:'center'}}>
A very big multiline text that can not be accumulated in a single line is shown here with all the attributes trying to center it</Text>
</View>
textAlign: 'center'
Will do the trick
Most helpful comment
textAlign: 'center'Will do the trick