2018-05-25 00:47:55 +02:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
import Colors from './colors';
|
|
|
|
|
|
|
|
const channelPageStyle = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'center',
|
|
|
|
},
|
|
|
|
content: {
|
|
|
|
flex: 1
|
|
|
|
},
|
2018-05-25 20:52:08 +02:00
|
|
|
fileList: {
|
2018-05-26 01:20:44 +02:00
|
|
|
flex: 1,
|
2019-03-01 19:25:16 +01:00
|
|
|
paddingTop: 30
|
2019-02-08 14:01:22 +01:00
|
|
|
},
|
|
|
|
fileListContent: {
|
|
|
|
paddingBottom: 16
|
2018-05-25 20:52:08 +02:00
|
|
|
},
|
2018-05-25 00:47:55 +02:00
|
|
|
title: {
|
|
|
|
color: Colors.LbryGreen,
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-SemiBold',
|
2018-05-25 00:47:55 +02:00
|
|
|
fontSize: 30,
|
|
|
|
margin: 16
|
2018-05-25 20:52:08 +02:00
|
|
|
},
|
|
|
|
busyContainer: {
|
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center',
|
|
|
|
flexDirection: 'row'
|
|
|
|
},
|
|
|
|
infoText: {
|
2018-12-11 21:06:42 +01:00
|
|
|
fontFamily: 'Inter-UI-Regular',
|
2018-05-25 20:52:08 +02:00
|
|
|
fontSize: 20,
|
|
|
|
textAlign: 'center',
|
|
|
|
marginLeft: 10
|
2019-01-07 11:00:30 +01:00
|
|
|
},
|
|
|
|
pageButtons: {
|
2019-02-08 14:01:22 +01:00
|
|
|
width: '100%',
|
2019-01-07 11:00:30 +01:00
|
|
|
flexDirection: 'row',
|
|
|
|
justifyContent: 'space-between',
|
2019-02-08 14:01:22 +01:00
|
|
|
position: 'absolute',
|
|
|
|
bottom: 76,
|
2019-01-07 11:00:30 +01:00
|
|
|
paddingLeft: 16,
|
2019-02-08 14:01:22 +01:00
|
|
|
paddingRight: 16
|
2019-01-07 11:00:30 +01:00
|
|
|
},
|
|
|
|
button: {
|
|
|
|
backgroundColor: Colors.LbryGreen,
|
|
|
|
paddingLeft: 16,
|
|
|
|
paddingRight: 16
|
|
|
|
},
|
|
|
|
nextButton: {
|
|
|
|
alignSelf: 'flex-end'
|
2018-05-25 00:47:55 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default channelPageStyle;
|