diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-09-09 20:20:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-09 10:20:33 -0700 |
commit | 6432667f608fae447b59e41b9f8bb64b564205a1 (patch) | |
tree | f90e4d113aecf0eb528f8146919a1764ec94e056 /src/view/com | |
parent | 4a1b1f17f46de9f8dde2766d61edc02c2267b14b (diff) | |
download | voidsky-6432667f608fae447b59e41b9f8bb64b564205a1.tar.zst |
ALF lists screen (#8941)
* alf list screens * relocate to `#/screens`, balkanize * use useBreakpoints * showCancel on subscribe menu * fix typo
Diffstat (limited to 'src/view/com')
-rw-r--r-- | src/view/com/util/LoadingScreen.tsx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/view/com/util/LoadingScreen.tsx b/src/view/com/util/LoadingScreen.tsx deleted file mode 100644 index 1086c9d17..000000000 --- a/src/view/com/util/LoadingScreen.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import {ActivityIndicator, View} from 'react-native' - -import {s} from '#/lib/styles' -import * as Layout from '#/components/Layout' - -/** - * @deprecated use Layout compoenents directly - */ -export function LoadingScreen() { - return ( - <Layout.Content> - <View style={s.p20}> - <ActivityIndicator size="large" /> - </View> - </Layout.Content> - ) -} |