react-native-schedule-week-view
Version:
Week View Calendar for React Native
30 lines (27 loc) • 566 B
JavaScript
import { StyleSheet } from 'react-native';
import { CONTAINER_WIDTH, CONTAINER_HEIGHT } from '../utils';
const styles = StyleSheet.create({
container: {
flex: 1,
},
scrollViewContent: {
flexDirection: 'row',
},
headerContainer: {
flexDirection: 'row',
},
header: {
flex: 1,
height: 1,
justifyContent: 'center',
alignItems: 'center',
width: CONTAINER_WIDTH,
},
loadingSpinner: {
position: 'absolute',
top: CONTAINER_HEIGHT / 2,
right: CONTAINER_WIDTH / 2,
zIndex: 2,
},
});
export default styles;