@fto-consult/expo-ui
Version:
Bibliothèque de composants UI Expo,react-native
8 lines • 370 B
JavaScript
import ActivityIndicator from "$ecomponents/ActivityIndicator";
import View from "$ecomponents/View";
import theme from "$theme";
export default function ScreenLoadingActivityIndicator({...props}){
return <View testID={"MainScreenWrapperLoadingIndicator"} style={[theme.alignItemsCenter,theme.justifyContentCenter]}>
<ActivityIndicator/>
</View>
}