diff options
author | Foster <ckhofq@gmail.com> | 2024-11-28 09:31:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-28 14:31:10 +0000 |
commit | 84796c1bcf374909917c7ec776376cc3e283abdc (patch) | |
tree | 41ba29d1b877e632eb72ab63734e18d681d45045 /src/components/AppLanguageDropdown.tsx | |
parent | 6a2067a761aa99523b83cf938f3272c680856914 (diff) | |
download | voidsky-84796c1bcf374909917c7ec776376cc3e283abdc.tar.zst |
fix iOS language picker style in dark mode (#6804)
Co-authored-by: skipness <ckhf@proton.me>
Diffstat (limited to 'src/components/AppLanguageDropdown.tsx')
-rw-r--r-- | src/components/AppLanguageDropdown.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/AppLanguageDropdown.tsx b/src/components/AppLanguageDropdown.tsx index 82ca4999e..de2e50fc8 100644 --- a/src/components/AppLanguageDropdown.tsx +++ b/src/components/AppLanguageDropdown.tsx @@ -34,6 +34,7 @@ export function AppLanguageDropdown(_props: ViewStyleProp) { return ( <View style={a.relative}> <RNPickerSelect + darkTheme={t.scheme === 'dark'} placeholder={{}} value={sanitizedLang} onValueChange={onChangeAppLanguage} |