lbry-fdroid/app/src/styles/settings.js
akinwale b9e0065aad
added single page header with back button and some styling (#75)
* added single page header with back button and some styling
* lock drawer mode state to closed for settings screen
2018-04-23 05:01:33 +01:00

37 lines
No EOL
656 B
JavaScript

import { StyleSheet } from 'react-native';
const settingsStyle = StyleSheet.create({
title: {
fontSize: 20,
fontWeight: 'bold',
margin: 16
},
scrollContainer: {
padding: 16
},
row: {
marginBottom: 24,
flex: 1,
flexDirection: 'row',
justifyContent: 'space-between'
},
switchText: {
width: '70%',
justifyContent: 'center'
},
switchContainer: {
width: '25%',
justifyContent: 'center'
},
label: {
fontSize: 14,
fontFamily: 'Metropolis-Regular'
},
description: {
fontSize: 12,
fontFamily: 'Metropolis-Regular',
color: '#aaaaaa'
}
});
export default settingsStyle;