将样式添加到DropDown React native

时间:2016-04-27 13:42:28

标签: javascript android node.js github react-native

我添加了this 插件 并尝试绘制Dropdown,它工作正常 以这种方式

 <View style={{ flex: 1, justifyContent: 'center', alignItems: 'flex-start',alignSelf:'center', backgroundColor:'#ebeef0'}}>
          <Select style={{  alignItems: 'flex-start' }}
            width={250}
            ref="SELECT1"
            optionListRef={this._getOptionList.bind(this)}
            defaultValue="Select One of Option ..."
            onSelect={this._canada.bind(this)}>
            <Option>First</Option>
            <Option>Second</Option>
            <Option>Third</Option>
            <Option>Forth</Option>
            <Option>Fifth</Option>
            <Option>Six</Option>
            <Option>Seven</Option>
            <Option>Eight</Option>
            <Option>Ten</Option>
            <Option>Eleven</Option>
            <Option>Twelve</Option>
          </Select>          

          <OptionList ref="OPTIONLIST"/>
      </View>

我需要什么,使它看起来像带箭头的asp.net下拉列表 如 enter image description here

至少我想知道如何更改Dropdown的样式如何覆盖已安装插件的样式。

0 个答案:

没有答案