2018-01-30 19:48:26 +00:00
|
|
|
import { StyleSheet, Platform } 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',
|
|
|
|
padding: 5,
|
|
|
|
color: '#ccc'
|
2018-01-17 16:42:30 +00:00
|
|
|
},
|
|
|
|
readOnly: {
|
|
|
|
padding: 10
|
2018-01-30 19:48:26 +00:00
|
|
|
},
|
|
|
|
reactionPickerContainer: {
|
|
|
|
// width: width - 20,
|
|
|
|
// height: width - 20,
|
|
|
|
paddingHorizontal: Platform.OS === 'android' ? 11 : 10,
|
|
|
|
backgroundColor: '#F7F7F7',
|
|
|
|
borderRadius: 4,
|
|
|
|
flexDirection: 'column'
|
2017-12-08 19:13:21 +00:00
|
|
|
}
|
|
|
|
});
|