2018-04-24 19:34:03 +00:00
|
|
|
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: {
|
2018-12-12 15:15:10 +00:00
|
|
|
width: '100%',
|
2018-04-24 19:34:03 +00:00
|
|
|
height: StyleSheet.hairlineWidth,
|
2018-12-12 15:15:10 +00:00
|
|
|
backgroundColor: '#E7EBF2',
|
2018-04-24 19:34:03 +00:00
|
|
|
marginVertical: 20
|
|
|
|
}
|
|
|
|
});
|