import React from 'react'; import { View, ActivityIndicator, StyleSheet } from 'react-native'; interface Props {} export const ActivityOverlay: React.FC = () => { return ( ); }; const styles = StyleSheet.create({ activityOverlayStyle: { ...StyleSheet.absoluteFillObject, backgroundColor: 'rgba(255, 255, 255, .5)', display: 'flex', justifyContent: 'center', alignContent: 'center', borderRadius: 5 }, activityIndicatorContainer: { backgroundColor: 'lightgray', padding: 10, borderRadius: 50, alignSelf: 'center', shadowColor: '#000000', shadowOffset: { width: 0, height: 3 }, shadowRadius: 5, shadowOpacity: 1.0 } });