react-native-new-ui-datepicker
Version:
Customizable date picker for React Native
25 lines (23 loc) • 456 B
text/typescript
import { StyleSheet } from 'react-native';
export default StyleSheet.create({
container: {
position: 'relative',
},
selectedIndicator: {
position: 'absolute',
width: '100%',
backgroundColor: 'hsl(200, 8%, 94%)',
borderRadius: 5,
top: '50%',
},
scrollView: {
overflow: 'hidden',
flex: 1,
},
option: {
alignItems: 'center',
justifyContent: 'center',
paddingHorizontal: 16,
zIndex: 100,
},
});