Open
Description
The search text is black on all devices except iPhoneX.
I think theme should be applied to the search bar text as well. (see below)
const Searchbar = (
<TextInput
style={styles.search}
placeholder={placeholder}
clearButtonMode="always"
returnKeyType="done"
autoCorrect={false}
underlineColorAndroid={theme}
value={searchQuery}
onChangeText={this.handleSearch}
color={theme} // Add this
/>
);
Activity