diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-08-24 01:18:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-24 01:18:02 +0300 |
commit | ce2604d0e992618fcc590ccfc836e4b5b9bb8962 (patch) | |
tree | a941f55bd00d4af2873cf2713951a1df1a1311c1 /src/screens/Settings/AppIconSettings/useAppIconSets.ts | |
parent | c28195067f27fb02de1ae471c4f86aab660b45ce (diff) | |
download | voidsky-ce2604d0e992618fcc590ccfc836e4b5b9bb8962.tar.zst |
Update `@mozzius/expo-dynamic-app-icon` (#8834)
Diffstat (limited to 'src/screens/Settings/AppIconSettings/useAppIconSets.ts')
-rw-r--r-- | src/screens/Settings/AppIconSettings/useAppIconSets.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/screens/Settings/AppIconSettings/useAppIconSets.ts b/src/screens/Settings/AppIconSettings/useAppIconSets.ts index fd3caeb30..f7d191f77 100644 --- a/src/screens/Settings/AppIconSettings/useAppIconSets.ts +++ b/src/screens/Settings/AppIconSettings/useAppIconSets.ts @@ -37,6 +37,16 @@ export function useAppIconSets() { ) }, }, + { + id: 'next', + name: _(msg({context: 'Name of app icon variant', message: 'Next'})), + iosImage: () => { + return require(`../../../../assets/app-icons/icon_default_next.png`) + }, + androidImage: () => { + return require(`../../../../assets/app-icons/icon_default_next.png`) + }, + }, ] satisfies AppIconSet[] /** |