verdnatura-chat/app/views/SearchMessagesView/styles.js

26 lines
413 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
}
});