about summary refs log tree commit diff
path: root/src/view/com/util/LoadingScreen.tsx
blob: 5d2aeb38ff298e3781c600ede43e34c47f18b4d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import {ActivityIndicator, View} from 'react-native'

import {s} from '#/lib/styles'
import {CenteredView} from './Views'

export function LoadingScreen() {
  return (
    <CenteredView>
      <View style={s.p20}>
        <ActivityIndicator size="large" />
      </View>
    </CenteredView>
  )
}