:ここ
https://github.com/umhan35/react-native-search-bar/blob/master/SearchBar.js#L13
は、あなたのスタイルをテストすると遊ぶことができるコードサンプルですこのコンポーネントの関連プロパティ:
import React from 'react';
import {
AppRegistry,
View
} from 'react-native';
import SearchBar from 'react-native-search-bar';
class MyApp extends React.Component {
render() {
return(
<View>
<SearchBar
barTintColor="red"
tintColor="green"
textColor="blue"
textFieldBackgroundColor="pink"
hideBackground={false}
barStyle="default"
searchBarStyle="default"
/>
</View>
);
}
}
AppRegistry.registerComponent('MyApp',() => MyApp);
しかし、私は丸い角といいえそのような境界線は、iOSで可能ですか? – Mack