diff options
author | Eric Bailey <git@esb.lol> | 2024-03-21 12:21:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-21 12:21:36 -0500 |
commit | 5f39ca31872af0554d79d9a6d0b070110385e9bd (patch) | |
tree | bdb1c9eb4d9e6e7aafe17f67999b83540e1e8df3 /src/view/com/auth/SplashScreen.tsx | |
parent | 4ff2bb7abaac0eb8152d688ab7c71df84e725d3a (diff) | |
download | voidsky-5f39ca31872af0554d79d9a6d0b070110385e9bd.tar.zst |
Mods UI fixes (#3296)
* Fix report dialog buttons on Android by adjusting styles * Dry up label pref comp
Diffstat (limited to 'src/view/com/auth/SplashScreen.tsx')
-rw-r--r-- | src/view/com/auth/SplashScreen.tsx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/view/com/auth/SplashScreen.tsx b/src/view/com/auth/SplashScreen.tsx index fe0d4ee49..5e431742e 100644 --- a/src/view/com/auth/SplashScreen.tsx +++ b/src/view/com/auth/SplashScreen.tsx @@ -1,21 +1,21 @@ import React from 'react' import {View} from 'react-native' +import RNPickerSelect, {PickerSelectProps} from 'react-native-picker-select' import {useSafeAreaInsets} from 'react-native-safe-area-context' - -import {ErrorBoundary} from 'view/com/util/ErrorBoundary' -import {CenteredView} from '../util/Views' -import {Trans, msg} from '@lingui/macro' +import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {Logo} from '#/view/icons/Logo' -import {Logotype} from '#/view/icons/Logotype' -import RNPickerSelect, {PickerSelectProps} from 'react-native-picker-select' + import {sanitizeAppLanguageSetting} from '#/locale/helpers' -import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences' import {APP_LANGUAGES} from '#/locale/languages' +import {useLanguagePrefs, useLanguagePrefsApi} from '#/state/preferences' +import {Logo} from '#/view/icons/Logo' +import {Logotype} from '#/view/icons/Logotype' +import {ErrorBoundary} from 'view/com/util/ErrorBoundary' import {atoms as a, useTheme} from '#/alf' -import {Text} from '#/components/Typography' import {Button, ButtonText} from '#/components/Button' import {ChevronBottom_Stroke2_Corner0_Rounded as ChevronDown} from '#/components/icons/Chevron' +import {Text} from '#/components/Typography' +import {CenteredView} from '../util/Views' export const SplashScreen = ({ onPressSignin, |