Merge branch 'master' into 156-make-components-like-prettier-radio-buttons

This commit is contained in:
Julia Friesel
2018-09-01 19:59:30 +02:00
10 changed files with 245 additions and 23 deletions
+3 -2
View File
@@ -9,7 +9,7 @@ import styles from '../../../styles'
import { saveSymptom } from '../../../db'
import ActionButtonFooter from './action-button-footer'
export default class Temp extends Component {
export default class Note extends Component {
constructor(props) {
super(props)
this.cycleDay = props.cycleDay
@@ -27,6 +27,7 @@ export default class Temp extends Component {
<ScrollView style={styles.page}>
<View style={styles.symptomViewRow}>
<TextInput
autoFocus={!this.state.currentValue}
multiline={true}
placeholder="Enter"
onChangeText={(val) => {
@@ -50,4 +51,4 @@ export default class Temp extends Component {
</View>
)
}
}
}