diff --git a/app/views/RoomView/styles.js b/app/views/RoomView/styles.js new file mode 100644 index 000000000..66ddd313d --- /dev/null +++ b/app/views/RoomView/styles.js @@ -0,0 +1,34 @@ +import { StyleSheet } from 'react-native'; + +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' + } +});