diff options
Diffstat (limited to 'src/view/screens')
-rw-r--r-- | src/view/screens/Contacts.tsx | 2 | ||||
-rw-r--r-- | src/view/screens/Search.tsx | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/view/screens/Contacts.tsx b/src/view/screens/Contacts.tsx index 05256a7eb..bcfb47782 100644 --- a/src/view/screens/Contacts.tsx +++ b/src/view/screens/Contacts.tsx @@ -39,6 +39,7 @@ export const Contacts = ({navIdx, visible, params}: ScreenParams) => { value={searchText} style={styles.searchInput} placeholder="Search" + placeholderTextColor={colors.gray4} onChangeText={onChangeSearchText} /> </View> @@ -79,5 +80,6 @@ const styles = StyleSheet.create({ }, searchInput: { flex: 1, + color: colors.black, }, }) 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: { |