react-native-week-schedule-1
Version:
21 lines (20 loc) • 575 B
text/typescript
import { StyleSheet } from 'react-native';
import { grid } from '../../utils/grid';
export const getStyles = () => {
return StyleSheet.create({
container: {
position: 'absolute',
width: '100%',
height: '100%',
},
zebraWrapper: {
position: 'absolute',
alignItems: 'center',
justifyContent: 'center',
width: grid.cellWight,
height: grid.cellHeight,
backgroundColor: grid.colors.primary,
overflow: 'hidden',
},
})
}