mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1import {ActivityIndicator, View} from 'react-native'
2
3import {s} from '#/lib/styles'
4import * as Layout from '#/components/Layout'
5
6/**
7 * @deprecated use Layout compoenents directly
8 */
9export function LoadingScreen() {
10 return (
11 <Layout.Content>
12 <View style={s.p20}>
13 <ActivityIndicator size="large" />
14 </View>
15 </Layout.Content>
16 )
17}