2018-03-29 17:55:37 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
2019-03-29 19:36:07 +00:00
|
|
|
import sharedStyles from '../Styles';
|
2018-03-29 17:55:37 +00:00
|
|
|
|
|
|
|
export default StyleSheet.create({
|
2019-12-04 16:39:53 +00:00
|
|
|
button: {
|
|
|
|
...sharedStyles.textAlignCenter,
|
|
|
|
...sharedStyles.textBold
|
|
|
|
},
|
2018-03-29 17:55:37 +00:00
|
|
|
buttonInverted: {
|
|
|
|
borderWidth: 2,
|
|
|
|
borderRadius: 2
|
|
|
|
},
|
|
|
|
buttonContainerDisabled: {
|
2019-12-04 16:39:53 +00:00
|
|
|
opacity: 0.7
|
|
|
|
},
|
|
|
|
buttonContainer_inverted: {
|
|
|
|
paddingVertical: 15,
|
|
|
|
marginBottom: 0
|
|
|
|
},
|
|
|
|
button_inverted: {
|
|
|
|
flexGrow: 1
|
|
|
|
},
|
|
|
|
buttonContainerLastChild: {
|
|
|
|
marginBottom: 40
|
|
|
|
},
|
|
|
|
buttonContainer: {
|
|
|
|
paddingVertical: 15,
|
|
|
|
marginBottom: 20,
|
|
|
|
borderRadius: 2
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
|
|
|
buttonDanger: {
|
|
|
|
borderWidth: 2,
|
|
|
|
borderRadius: 2
|
|
|
|
},
|
|
|
|
switchContainer: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'flex-start'
|
|
|
|
},
|
|
|
|
switchLabelContainer: {
|
|
|
|
flex: 1,
|
2019-12-04 16:39:53 +00:00
|
|
|
paddingHorizontal: 10,
|
|
|
|
alignItems: 'flex-end'
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
|
|
|
switchLabelPrimary: {
|
|
|
|
fontSize: 16,
|
2019-03-29 19:36:07 +00:00
|
|
|
paddingBottom: 6,
|
2019-12-04 16:39:53 +00:00
|
|
|
...sharedStyles.textRegular
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
|
|
|
switchLabelSecondary: {
|
2019-03-29 19:36:07 +00:00
|
|
|
fontSize: 12,
|
|
|
|
...sharedStyles.textRegular,
|
2019-12-04 16:39:53 +00:00
|
|
|
textAlign: 'right'
|
2018-03-29 17:55:37 +00:00
|
|
|
},
|
|
|
|
switch: {
|
|
|
|
alignSelf: 'center'
|
|
|
|
},
|
|
|
|
divider: {
|
|
|
|
height: StyleSheet.hairlineWidth,
|
|
|
|
borderBottomWidth: StyleSheet.hairlineWidth,
|
|
|
|
marginVertical: 20
|
2018-05-24 20:17:45 +00:00
|
|
|
},
|
|
|
|
broadcast: {
|
2019-12-04 16:39:53 +00:00
|
|
|
...sharedStyles.textAlignCenter,
|
|
|
|
...sharedStyles.textSemibold
|
2018-03-29 17:55:37 +00:00
|
|
|
}
|
|
|
|
});
|