2021-11-10 17:49:53 +00:00
|
|
|
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
|
|
|
|
|
|
|
|
export default {
|
2022-11-08 15:46:46 +00:00
|
|
|
|
|
|
|
customContainer: {
|
|
|
|
marginVertical: BaseTheme.spacing[2]
|
|
|
|
},
|
|
|
|
|
2021-11-10 17:49:53 +00:00
|
|
|
speakerStatsContainer: {
|
|
|
|
flexDirection: 'column',
|
|
|
|
flex: 1,
|
2021-12-28 14:35:21 +00:00
|
|
|
height: 'auto',
|
|
|
|
paddingHorizontal: BaseTheme.spacing[3],
|
2022-02-17 14:51:00 +00:00
|
|
|
backgroundColor: BaseTheme.palette.ui01
|
2021-11-10 17:49:53 +00:00
|
|
|
},
|
2022-11-08 15:46:46 +00:00
|
|
|
|
2021-11-10 17:49:53 +00:00
|
|
|
speakerStatsItemContainer: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignSelf: 'stretch',
|
2021-12-28 14:35:21 +00:00
|
|
|
height: BaseTheme.spacing[9],
|
|
|
|
alignItems: 'center'
|
2021-11-10 17:49:53 +00:00
|
|
|
},
|
2022-11-08 15:46:46 +00:00
|
|
|
|
2021-12-28 14:35:21 +00:00
|
|
|
speakerStatsAvatar: {
|
|
|
|
width: BaseTheme.spacing[5],
|
|
|
|
height: BaseTheme.spacing[5],
|
|
|
|
marginRight: BaseTheme.spacing[3]
|
2021-11-10 17:49:53 +00:00
|
|
|
},
|
2022-11-08 15:46:46 +00:00
|
|
|
|
2021-12-28 14:35:21 +00:00
|
|
|
speakerStatsNameTime: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
alignItems: 'center'
|
|
|
|
},
|
2022-11-08 15:46:46 +00:00
|
|
|
|
2021-12-28 14:35:21 +00:00
|
|
|
speakerStatsText: {
|
|
|
|
...BaseTheme.typography.bodyShortRegularLarge,
|
|
|
|
color: BaseTheme.palette.text01
|
|
|
|
},
|
2022-11-08 15:46:46 +00:00
|
|
|
|
2021-12-28 14:35:21 +00:00
|
|
|
speakerStatsTime: {
|
|
|
|
paddingHorizontal: 4,
|
|
|
|
paddingVertical: 2,
|
|
|
|
borderRadius: 4
|
|
|
|
},
|
2022-11-08 15:46:46 +00:00
|
|
|
|
2021-12-28 14:35:21 +00:00
|
|
|
speakerStatsDominant: {
|
|
|
|
backgroundColor: BaseTheme.palette.success02
|
|
|
|
},
|
2022-11-08 15:46:46 +00:00
|
|
|
|
2021-12-28 14:35:21 +00:00
|
|
|
speakerStatsLeft: {
|
|
|
|
color: BaseTheme.palette.text03
|
2021-11-10 17:49:53 +00:00
|
|
|
}
|
|
|
|
};
|