React-native-elements搜索栏忽略样式

时间:2019-05-17 12:27:53

标签: react-native react-native-elements

使用"expo": "^32.0.0","react-native-elements": "^1.1.0",在我的组件中,我使用containerStyleinputStyle,但是searchbar保持不变。我该如何设计样式?

<SearchBar
    placeholder="Type Here..."
    onChangeText={this.updateSearch}
    inputStyle={{ backgroundColor: "white" }}
    containerStyle={{
      backgroundColor: "white",
      borderWidth: 1,
      borderRadius: 5
    }}
    placeholderTextColor={"#g5g5g5"}
    placeholder={"Pritish Vaidya"}
    value={search}
  />

1 个答案:

答案 0 :(得分:0)

inputContainerStyle={{... }}

是您要寻找的

您可以找到更多here