UNPKG

react-native-week-view

Version:
16 lines (13 loc) 275 B
import { StyleSheet, Platform } from 'react-native'; const styles = StyleSheet.create({ scrollViewContentContainer: Platform.OS === 'web' ? { height: '100vh', } : { flex: 0 }, scrollView: { flex: 1, }, }); export default styles;