样式反应本机选择器 - 特别是文本对齐(iOS)

Styling react native picker - specifically text alignment (iOS)

我有一个全屏宽度的选择器,文本居中对齐。我希望文本向左对齐但有困难。

formPicker:{
    marginTop:10,
    backgroundColor:'#eee',
    alignSelf:'flex-start',
    //alignContent:'flex-start',
    //justifyContent:'flex-start',
    //textAlign:'left'
}

<Picker style={styles.formPicker} selectedValue={selectedValue} onValueChange={this.pickerValueChanged}>
                    {pickerItems}
                </Picker>

在react native picker中,提供了ios中的标签样式itemStyle prop

<Picker itemStyle={{textAlign:'left'}} selectedValue={selectedValue} onValueChange={this.pickerValueChanged}>
                    {pickerItems}
                </Picker>

查看更多信息documentation