123456789101112131415161718192021 |
- import { StyleSheet } from 'react-native';
- import { Colors } from '../../theme';
- export const styles = StyleSheet.create({
- drawer: {
- width: '100%',
- height: 1,
- backgroundColor: '#E5E5E5'
- },
- wrapper: {
- backgroundColor: Colors.WHITE,
- paddingLeft: 15,
- paddingRight: 15,
- borderTopLeftRadius: 10,
- borderTopRightRadius: 10
- },
- modal: {
- justifyContent: 'flex-end',
- margin: 0,
- },
- });
|