2018-01-16 18:48:05 +00:00
|
|
|
import { StyleSheet, Platform } from 'react-native';
|
2018-01-09 17:12:55 +00:00
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
content: {
|
|
|
|
flexGrow: 1,
|
|
|
|
flexShrink: 1
|
|
|
|
},
|
|
|
|
message: {
|
|
|
|
padding: 12,
|
|
|
|
paddingTop: 6,
|
|
|
|
paddingBottom: 6,
|
|
|
|
flexDirection: 'row',
|
|
|
|
transform: [{ scaleY: -1 }]
|
|
|
|
},
|
|
|
|
textInfo: {
|
|
|
|
fontStyle: 'italic',
|
|
|
|
color: '#a0a0a0'
|
|
|
|
},
|
|
|
|
editing: {
|
|
|
|
backgroundColor: '#fff5df'
|
2018-01-16 18:48:05 +00:00
|
|
|
},
|
|
|
|
customEmoji: {
|
|
|
|
width: 16,
|
|
|
|
height: 16
|
|
|
|
},
|
|
|
|
codeStyle: {
|
|
|
|
...Platform.select({
|
|
|
|
ios: { fontFamily: 'Courier New' },
|
|
|
|
android: { fontFamily: 'monospace' }
|
|
|
|
}),
|
|
|
|
backgroundColor: '#f8f8f8',
|
|
|
|
borderColor: '#cccccc',
|
|
|
|
borderWidth: 1,
|
|
|
|
borderRadius: 5,
|
|
|
|
padding: 5
|
2018-01-09 17:12:55 +00:00
|
|
|
}
|
|
|
|
});
|