Skip to content

Commit

Permalink
fix ui
Browse files Browse the repository at this point in the history
  • Loading branch information
victorbalssa committed Feb 21, 2024
1 parent 9cb4af6 commit a16dbe6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/Screens/TransactionsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ function RenderItem({ item }) {
borderRadius: 4,
paddingHorizontal: 2,
paddingVertical: 0,
backgroundColor: colors.brandNeutral,
backgroundColor: colors.brandNeutralFix,
marginHorizontal: 2,
}}
>
Expand Down Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions src/constants/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export default {
green: '#15803d',
warmGray100: '#3b3b3b',
blurAndroidHeader: 'rgba(40,40,40,0.16)',
brandNeutralFix: '#e3e3e3',
dark: {
text: 'white',
textOpposite: 'black',
Expand Down
4 changes: 4 additions & 0 deletions src/i18n/locale/translations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -38,4 +41,5 @@ export default {
it: itIT,
sl: slSI,
ru: ruRU,
vi: viVN,
};

0 comments on commit a16dbe6

Please sign in to comment.