blob: 1086c9d17debcb65ecb53c2c67dd53f71b39668d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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>
)
}
|