HuyPV
Thursday, November 24, 2016
<Text style={{color: '#f0f', textAlign: 'center'}}>HuyPV - Platform is {Platform.OS}</Text>
Bonus:
#If else for Android and iOS, how to code?
render() {
let myviews = [];
if (Platform.OS === 'ios') {
myviews.push(<Text>Template cho iOS</Text>)
} else {
myviews.push(<Text>Template cho Android</Text>)
}
return (
<View>
{myviews}
</View>
);
}
Title:
React-native - Simple Text inline style
Description:
Use inline style for Text component in React Native
...
Rating:
4