mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
138 lines
2.9 KiB
TypeScript
138 lines
2.9 KiB
TypeScript
import { TextStyle, ViewStyle, StyleSheet } from 'react-native';
|
|
const { themeStyle } = require('../../global-style.js');
|
|
|
|
export interface ConfigScreenStyles {
|
|
body: ViewStyle;
|
|
|
|
settingContainer: ViewStyle;
|
|
settingContainerNoBottomBorder: ViewStyle;
|
|
headerWrapperStyle: ViewStyle;
|
|
|
|
settingText: TextStyle;
|
|
linkText: TextStyle;
|
|
descriptionText: TextStyle;
|
|
warningText: TextStyle;
|
|
|
|
sliderUnits: TextStyle;
|
|
settingDescriptionText: TextStyle;
|
|
permissionText: TextStyle;
|
|
textInput: TextStyle;
|
|
|
|
switchSettingText: TextStyle;
|
|
switchSettingContainer: ViewStyle;
|
|
switchSettingControl: TextStyle;
|
|
|
|
settingControl: TextStyle;
|
|
}
|
|
|
|
const configScreenStyles = (themeId: number): ConfigScreenStyles => {
|
|
const theme = themeStyle(themeId);
|
|
|
|
const settingContainerStyle: ViewStyle = {
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
borderBottomWidth: 1,
|
|
borderBottomColor: theme.dividerColor,
|
|
paddingTop: theme.marginTop,
|
|
paddingBottom: theme.marginBottom,
|
|
paddingLeft: theme.marginLeft,
|
|
paddingRight: theme.marginRight,
|
|
};
|
|
|
|
const settingTextStyle: TextStyle = {
|
|
color: theme.color,
|
|
fontSize: theme.fontSize,
|
|
flex: 1,
|
|
paddingRight: 5,
|
|
};
|
|
|
|
const settingControlStyle: TextStyle = {
|
|
color: theme.color,
|
|
flex: 1,
|
|
borderBottomWidth: 1,
|
|
borderBottomColor: theme.dividerColor,
|
|
};
|
|
|
|
const styles: ConfigScreenStyles = {
|
|
body: {
|
|
flex: 1,
|
|
justifyContent: 'flex-start',
|
|
flexDirection: 'column',
|
|
},
|
|
settingContainer: settingContainerStyle,
|
|
settingContainerNoBottomBorder: {
|
|
...settingContainerStyle,
|
|
borderBottomWidth: 0,
|
|
paddingBottom: theme.marginBottom / 2,
|
|
},
|
|
settingText: settingTextStyle,
|
|
descriptionText: {
|
|
color: theme.colorFaded,
|
|
fontSize: theme.fontSizeSmaller,
|
|
flex: 1,
|
|
},
|
|
linkText: {
|
|
...settingTextStyle,
|
|
borderBottomWidth: 1,
|
|
borderBottomColor: theme.color,
|
|
flex: 0,
|
|
fontWeight: 'normal',
|
|
},
|
|
warningText: {
|
|
color: theme.color,
|
|
backgroundColor: theme.warningBackgroundColor,
|
|
fontSize: theme.fontSizeSmaller,
|
|
},
|
|
|
|
sliderUnits: {
|
|
color: theme.color,
|
|
fontSize: theme.fontSize,
|
|
marginRight: 10,
|
|
},
|
|
settingDescriptionText: {
|
|
color: theme.colorFaded,
|
|
fontSize: theme.fontSizeSmaller,
|
|
flex: 1,
|
|
paddingLeft: theme.marginLeft,
|
|
paddingRight: theme.marginRight,
|
|
paddingBottom: theme.marginBottom,
|
|
},
|
|
permissionText: {
|
|
color: theme.color,
|
|
fontSize: theme.fontSize,
|
|
flex: 1,
|
|
marginTop: 10,
|
|
},
|
|
settingControl: settingControlStyle,
|
|
textInput: {
|
|
color: theme.color,
|
|
},
|
|
|
|
switchSettingText: {
|
|
...settingTextStyle,
|
|
width: '80%',
|
|
},
|
|
switchSettingContainer: {
|
|
...settingContainerStyle,
|
|
flexDirection: 'row',
|
|
justifyContent: 'space-between',
|
|
},
|
|
|
|
headerWrapperStyle: {
|
|
...settingContainerStyle,
|
|
...theme.headerWrapperStyle,
|
|
},
|
|
|
|
switchSettingControl: {
|
|
...settingControlStyle,
|
|
color: undefined,
|
|
flex: 0,
|
|
},
|
|
};
|
|
|
|
return StyleSheet.create(styles);
|
|
};
|
|
|
|
export default configScreenStyles;
|