2018-02-08 14:08:50 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
2017-12-08 19:13:21 +00:00
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
typing: { fontWeight: 'bold', paddingHorizontal: 15, height: 25 },
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
backgroundColor: '#fff'
|
|
|
|
},
|
|
|
|
safeAreaView: {
|
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
list: {
|
|
|
|
flex: 1,
|
|
|
|
transform: [{ scaleY: -1 }]
|
|
|
|
},
|
|
|
|
separator: {
|
|
|
|
height: 1,
|
|
|
|
backgroundColor: '#CED0CE'
|
|
|
|
},
|
|
|
|
bannerContainer: {
|
|
|
|
backgroundColor: 'orange'
|
|
|
|
},
|
|
|
|
bannerText: {
|
|
|
|
margin: 5,
|
|
|
|
textAlign: 'center',
|
|
|
|
color: '#a00'
|
|
|
|
},
|
|
|
|
loadingMore: {
|
|
|
|
transform: [{ scaleY: -1 }],
|
|
|
|
textAlign: 'center',
|
2018-04-24 19:34:03 +00:00
|
|
|
padding: 15,
|
2017-12-08 19:13:21 +00:00
|
|
|
color: '#ccc'
|
2018-01-17 16:42:30 +00:00
|
|
|
},
|
|
|
|
readOnly: {
|
|
|
|
padding: 10
|
2018-01-30 19:48:26 +00:00
|
|
|
},
|
2018-05-24 20:17:45 +00:00
|
|
|
blockedOrBlocker: {
|
|
|
|
padding: 10
|
|
|
|
},
|
2018-01-30 19:48:26 +00:00
|
|
|
reactionPickerContainer: {
|
|
|
|
// width: width - 20,
|
|
|
|
// height: width - 20,
|
2018-02-08 14:08:50 +00:00
|
|
|
// paddingHorizontal: Platform.OS === 'android' ? 11 : 10,
|
2018-01-30 19:48:26 +00:00
|
|
|
backgroundColor: '#F7F7F7',
|
|
|
|
borderRadius: 4,
|
|
|
|
flexDirection: 'column'
|
2018-07-18 20:34:59 +00:00
|
|
|
},
|
|
|
|
loading: {
|
2018-09-11 16:32:52 +00:00
|
|
|
flex: 1,
|
|
|
|
marginVertical: 15
|
2018-08-10 13:17:45 +00:00
|
|
|
},
|
|
|
|
imageBackground: {
|
|
|
|
width: '100%',
|
|
|
|
height: '100%',
|
|
|
|
position: 'absolute'
|
2017-12-08 19:13:21 +00:00
|
|
|
}
|
|
|
|
});
|