diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-12-11 22:33:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-11 22:33:45 +0000 |
commit | e49dad28896695fc6396ba704a94d3e459711f1a (patch) | |
tree | 99a702c4a1794d8ae4223fbdcbec38fc9ece69b6 /src/screens/Settings/AppearanceSettings.tsx | |
parent | 69f22b9dba41987763310c1adc4ac87d58d63334 (diff) | |
download | voidsky-e49dad28896695fc6396ba704a94d3e459711f1a.tar.zst |
Nicer app icon screen (#6972)
* wip exploration * list format instead of grid * fix normalising default name * adjust margins * Rework the app icon link * Decrease app icon size * Adjust some spacing * Move some things around to fix web errors * Fix pathname --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com> Co-authored-by: Eric Bailey <git@esb.lol>
Diffstat (limited to 'src/screens/Settings/AppearanceSettings.tsx')
-rw-r--r-- | src/screens/Settings/AppearanceSettings.tsx | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/screens/Settings/AppearanceSettings.tsx b/src/screens/Settings/AppearanceSettings.tsx index 48c4a2d85..81ac59105 100644 --- a/src/screens/Settings/AppearanceSettings.tsx +++ b/src/screens/Settings/AppearanceSettings.tsx @@ -13,7 +13,7 @@ import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' import {isNative} from '#/platform/detection' import {useSession} from '#/state/session' import {useSetThemePrefs, useThemePrefs} from '#/state/shell' -import {Logo} from '#/view/icons/Logo' +import {SettingsListItem as AppIconSettingsListItem} from '#/screens/Settings/AppIconSettings/SettingsListItem' import {atoms as a, native, useAlf, useTheme} from '#/alf' import * as ToggleButton from '#/components/forms/ToggleButton' import {Props as SVGIconProps} from '#/components/icons/common' @@ -181,15 +181,7 @@ export function AppearanceSettingsScreen({}: Props) { {isNative && DISCOVER_DEBUG_DIDS[currentAccount?.did ?? ''] && ( <> <SettingsList.Divider /> - - <SettingsList.LinkItem - to="/settings/app-icon" - label={_(msg`App Icon`)}> - <SettingsList.ItemIcon icon={Logo} /> - <SettingsList.ItemText> - <Trans>App Icon</Trans> - </SettingsList.ItemText> - </SettingsList.LinkItem> + <AppIconSettingsListItem /> </> )} </Animated.View> |