2018-03-23 00:03:05 +01:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
|
|
|
const settingsStyle = StyleSheet.create({
|
|
|
|
title: {
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: 'bold',
|
|
|
|
margin: 16
|
|
|
|
},
|
|
|
|
scrollContainer: {
|
2018-04-23 06:01:33 +02:00
|
|
|
padding: 16
|
2018-03-23 00:03:05 +01:00
|
|
|
},
|
|
|
|
row: {
|
2018-03-30 13:02:19 +02:00
|
|
|
marginBottom: 24,
|
2018-03-23 00:03:05 +01:00
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'row',
|
|
|
|
justifyContent: 'space-between'
|
|
|
|
},
|
|
|
|
switchText: {
|
2018-03-30 13:02:19 +02:00
|
|
|
width: '70%',
|
|
|
|
justifyContent: 'center'
|
2018-03-23 00:03:05 +01:00
|
|
|
},
|
|
|
|
switchContainer: {
|
2018-03-30 13:02:19 +02:00
|
|
|
width: '25%',
|
|
|
|
justifyContent: 'center'
|
2018-03-23 00:03:05 +01:00
|
|
|
},
|
|
|
|
label: {
|
|
|
|
fontSize: 14,
|
|
|
|
fontFamily: 'Metropolis-Regular'
|
|
|
|
},
|
|
|
|
description: {
|
|
|
|
fontSize: 12,
|
|
|
|
fontFamily: 'Metropolis-Regular',
|
|
|
|
color: '#aaaaaa'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default settingsStyle;
|