about summary refs log tree commit diff
path: root/src/view/com/util/LoadingScreen.tsx
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-09-09 20:20:33 +0300
committerGitHub <noreply@github.com>2025-09-09 10:20:33 -0700
commit6432667f608fae447b59e41b9f8bb64b564205a1 (patch)
treef90e4d113aecf0eb528f8146919a1764ec94e056 /src/view/com/util/LoadingScreen.tsx
parent4a1b1f17f46de9f8dde2766d61edc02c2267b14b (diff)
downloadvoidsky-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/util/LoadingScreen.tsx')
-rw-r--r--src/view/com/util/LoadingScreen.tsx17
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>
-  )
-}