ALF lists screen (#8941)

* alf list screens

* relocate to `#/screens`, balkanize

* use useBreakpoints

* showCancel on subscribe menu

* fix typo
This commit is contained in:
Samuel Newman
2025-09-09 20:20:33 +03:00
committed by GitHub
parent 4a1b1f17f4
commit 6432667f60
10 changed files with 1226 additions and 1079 deletions
-17
View File
@@ -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>
)
}