2022-09-16 22:00:29 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
import { Colors } from 'constants/Colors';
|
|
|
|
|
|
|
|
export const styles = StyleSheet.create({
|
|
|
|
tabBar: {
|
|
|
|
backgroundColor: Colors.primary,
|
|
|
|
},
|
2022-09-19 05:42:27 +00:00
|
|
|
home: {
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'row',
|
|
|
|
height: '100%',
|
|
|
|
},
|
|
|
|
sidebar: {
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
height: '100%',
|
|
|
|
width: '33%',
|
|
|
|
maxWidth: 500,
|
|
|
|
},
|
|
|
|
conversation: {
|
|
|
|
height: '100%',
|
|
|
|
flexGrow: 1,
|
|
|
|
},
|
|
|
|
options: {
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'row',
|
|
|
|
paddingTop: 8,
|
|
|
|
paddingBottom: 4,
|
|
|
|
},
|
|
|
|
option: {
|
|
|
|
width: '50%',
|
|
|
|
height: 32,
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'row',
|
|
|
|
},
|
|
|
|
icon: {
|
|
|
|
paddingRight: 8,
|
|
|
|
},
|
|
|
|
channels: {
|
|
|
|
flexGrow: 1,
|
|
|
|
},
|
2022-09-19 19:07:33 +00:00
|
|
|
tabframe: {
|
|
|
|
width: '100%',
|
|
|
|
height: '100%',
|
|
|
|
}
|
2022-09-16 22:00:29 +00:00
|
|
|
});
|