UNPKG

react-native-schedule-week-view

Version:
30 lines (27 loc) 566 B
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;