diff --git a/src/components/Screens/TransactionsScreen.tsx b/src/components/Screens/TransactionsScreen.tsx index 4096cb4..2d96b55 100644 --- a/src/components/Screens/TransactionsScreen.tsx +++ b/src/components/Screens/TransactionsScreen.tsx @@ -215,7 +215,7 @@ function RenderItem({ item }) { borderRadius: 4, paddingHorizontal: 2, paddingVertical: 0, - backgroundColor: colors.brandNeutral, + backgroundColor: colors.brandNeutralFix, marginHorizontal: 2, }} > @@ -365,10 +365,6 @@ export default function TransactionsScreen({ navigation, route }: ScreenType) { autoCapitalize: 'none', placeholder: 'Search transactions...', headerIconColor: colors.text, - tintColor: colors.text, - textColor: colors.text, - hintTextColor: colors.text, - barTintColor: colors.tileBackgroundColor, onChangeText: (event) => setSearch(event.nativeEvent.text), onBlur: () => onLoad(), disableBackButtonOverride: true, diff --git a/src/constants/colors.ts b/src/constants/colors.ts index 3d1f5a5..1271125 100644 --- a/src/constants/colors.ts +++ b/src/constants/colors.ts @@ -21,6 +21,7 @@ export default { green: '#15803d', warmGray100: '#3b3b3b', blurAndroidHeader: 'rgba(40,40,40,0.16)', + brandNeutralFix: '#e3e3e3', dark: { text: 'white', textOpposite: 'black', diff --git a/src/i18n/locale/translations/index.ts b/src/i18n/locale/translations/index.ts index 6d389ee..d43cb3f 100644 --- a/src/i18n/locale/translations/index.ts +++ b/src/i18n/locale/translations/index.ts @@ -27,6 +27,9 @@ import 'moment/locale/sl'; import ruRU from './ru-RU'; import 'moment/locale/ru'; +import viVN from './vi-VN'; +import 'moment/locale/vi'; + export default { de: deDE, en: enUS, @@ -38,4 +41,5 @@ export default { it: itIT, sl: slSI, ru: ruRU, + vi: viVN, };