0
は、textAlignを使用:「それは.hereに動作していないcenter'.Butが私のコード https://rnplay.org/apps/ZN2gvAなぜtextAlign: 'center'が反応ネイティブで動作していないのですか? lable水平方向の中心.Iを作るためにどのよう
'use strict';
import React from 'react-native';
const {
AppRegistry,
Component,
Text,
View
}=React;
const styles=React.StyleSheet.create({
container:{
paddingTop:20,
textAlign:'center',
},
label:{
color:'blue',
backgroundColor:'red'
}
})
class SampleApp extends Component{
render(){
return (<View style={styles.container}><Text style={styles.label}>hello</Text></View>)
}
}
AppRegistry.registerComponent('SampleApp',() => SampleApp);