2016-05-23 3 views
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); 

答えて

2

であるあなたは、ネイティブがあるリアクト警告にもう少し注意を払う必要がありますあなたを与える:

enter image description here

スタイルをtextAlign: 'center'作品だけTextコンポーネント用。 ViewTextのスタイルドキュメントをご覧ください。

textAlign: 'centre'containerから削除し、labelに追加してください。変更点を確認してください。https://rnplay.org/apps/RQX5Fw

関連する問題