@anatolyk/react-native-week-view
Version:
Week View Calendar for React Native
39 lines (35 loc) • 689 B
JavaScript
import { StyleSheet } from 'react-native';
import { CONTAINER_WIDTH, CONTENT_OFFSET, WIDTH} from '../utils';
const GREY_COLOR = '#E9EDF0';
const styles = StyleSheet.create({
container: {
flex: 1,
paddingTop: CONTENT_OFFSET,
width: WIDTH*7/8,
},
timeRow: {
flex: 0,
},
timeLabelLine: {
height: 1,
backgroundColor: GREY_COLOR,
position: 'absolute',
right: 0,
left: 0,
},
event: {
flex: 1,
borderColor: GREY_COLOR,
borderLeftWidth: 1,
},
events: {
position: 'absolute',
flexDirection: 'row',
left: 0,
right: 0,
bottom: 0,
top: 0,
backgroundColor: 'transparent',
},
});
export default styles;