diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-20 14:29:50 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-20 14:29:50 -0600 |
commit | 0a2c3e6b519b8dde07e63f2f185a7591066f9ffd (patch) | |
tree | 83c12f69293cd1b2ec276079af655345c4dea507 /src/view/screens/Search.tsx | |
parent | abcfc11fe0e9f92fa2c63d7186270f4116ee72a6 (diff) | |
download | voidsky-0a2c3e6b519b8dde07e63f2f185a7591066f9ffd.tar.zst |
Fixes to text input colors on android
Diffstat (limited to 'src/view/screens/Search.tsx')
-rw-r--r-- | src/view/screens/Search.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/view/screens/Search.tsx b/src/view/screens/Search.tsx index d1d36265f..c909f50e6 100644 --- a/src/view/screens/Search.tsx +++ b/src/view/screens/Search.tsx @@ -58,6 +58,7 @@ export const Search = ({navIdx, visible, params}: ScreenParams) => { <TextInput ref={textInput} placeholder="Type your query here..." + placeholderTextColor={colors.gray4} selectTextOnFocus returnKeyType="search" style={styles.input} @@ -116,6 +117,7 @@ const styles = StyleSheet.create({ input: { flex: 1, fontSize: 16, + color: colors.black, }, outputContainer: { |