Update layout for smaller phones

This commit is contained in:
Maarten 2024-08-12 09:37:57 +02:00
parent 4b2d3b8b32
commit 586fd54aed
2 changed files with 3 additions and 3 deletions

View file

@ -116,7 +116,7 @@ export default function HomeScreen() {
nextComponent={ nextComponent={
<ThemedIcon size={28} name="chevron-forward"/> <ThemedIcon size={28} name="chevron-forward"/>
} }
weekdays={[ "Zo", "Ma", "Di", "Woe", "Do", "Vrij", "Zat" ]} weekdays={[ "Ma", "Di", "Woe", "Do", "Vrij", "Zat", "Zo" ]}
months={[ months={[
"Januari", "Januari",
"Februari", "Februari",

View file

@ -161,11 +161,11 @@ const styles = StyleSheet.create( {
}, },
mapContainer: { mapContainer: {
marginTop: 15, marginTop: 15,
height: 400, height: Dimensions.get( 'window' ).height / 3,
}, },
map: { map: {
width: Dimensions.get( 'window' ).width, width: Dimensions.get( 'window' ).width,
height: 400, height: Dimensions.get( 'window' ).height / 3,
flex: 1, flex: 1,
}, },
listContainer: { listContainer: {