32 lines
536 B
JavaScript
32 lines
536 B
JavaScript
import { StyleSheet } from 'react-native';
|
|
|
|
export default StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#fff'
|
|
},
|
|
searchContainer: {
|
|
padding: 20,
|
|
paddingBottom: 0
|
|
},
|
|
list: {
|
|
flex: 1,
|
|
backgroundColor: '#ffffff'
|
|
},
|
|
message: {
|
|
transform: [{ scaleY: 1 }]
|
|
},
|
|
divider: {
|
|
width: '100%',
|
|
height: StyleSheet.hairlineWidth,
|
|
backgroundColor: '#E7EBF2',
|
|
marginVertical: 20
|
|
},
|
|
listEmptyContainer: {
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'flex-start',
|
|
backgroundColor: '#ffffff'
|
|
}
|
|
});
|