Use consistent spinners for loading screens (#2611)

* Use consistent spinners for loading screens

* Consolidate into LoadingScreen
This commit is contained in:
dan 2024-01-24 23:01:22 +00:00 committed by GitHub
parent 9ff74ff30a
commit c2733bc2c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 31 additions and 46 deletions

View file

@ -0,0 +1,14 @@
import React from 'react'
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>
)
}