changes design of settings page

This commit is contained in:
tina
2018-10-01 17:54:33 +02:00
parent 6b606866e5
commit 8574fd1f67
3 changed files with 13 additions and 6 deletions
@@ -1,6 +1,6 @@
import React from 'react'
import { TextInput } from 'react-native'
import styles from '../../../styles'
import styles, {secondaryColor} from '../../../styles'
export default function PasswordField(props) {
return (
@@ -11,6 +11,9 @@ export default function PasswordField(props) {
onChangeText={props.onChangeText}
value={props.value}
placeholder={props.placeholder}
borderWidth={1}
borderColor={secondaryColor}
borderStyle={'solid'}
/>
)
}
+2 -2
View File
@@ -39,8 +39,8 @@ export default class TempSlider extends Component {
render() {
return (
<View style={{ alignItems: 'center' }}>
<AppText>{`${labels.tempScale.min} ${this.state.min}`}</AppText>
<AppText>{`${labels.tempScale.max} ${this.state.max}`}</AppText>
<AppText>{`${labels.tempScale.min} ${this.state.min.toFixed(1)}`}</AppText>
<AppText>{`${labels.tempScale.max} ${this.state.max.toFixed(1)}`}</AppText>
<Slider
values={[this.state.min, this.state.max]}
min={config.temperatureScale.min}
+7 -3
View File
@@ -191,9 +191,13 @@ export default StyleSheet.create({
width: 130
},
settingsSegment: {
backgroundColor: 'lightgrey',
padding: 10,
marginBottom: 10,
borderColor: secondaryColor,
borderStyle: 'solid',
borderWidth: 1,
borderRadius: 10,
marginTop: defaultTopMargin,
marginHorizontal: defaultIndentation,
padding: 7,
},
settingsSegmentTitle: {
fontWeight: 'bold'