Make everything scrollable

This commit is contained in:
Julia Friesel
2018-07-20 11:54:47 +02:00
parent 48aba2bbaf
commit 2a2f91fc55
3 changed files with 11 additions and 9 deletions
+4 -3
View File
@@ -2,7 +2,8 @@ import React, { Component } from 'react'
import {
View,
Button,
Text
Text,
ScrollView
} from 'react-native'
import { LocalDate } from 'js-joda'
import styles from '../styles'
@@ -46,7 +47,7 @@ export default class Home extends Component {
render() {
const navigate = this.props.navigation.navigate
return (
<View>
<ScrollView>
<Text style={styles.welcome}>{this.state.welcomeText}</Text>
<View style={styles.homeButtons}>
<View style={styles.homeButton}>
@@ -74,7 +75,7 @@ export default class Home extends Component {
</Button>
</View>
</View>
</View>
</ScrollView>
)
}
}