feat: setup navigation structure with Expo Router

This commit is contained in:
Antoni Nuñez Romeu
2026-07-06 10:53:52 +02:00
parent ea9bbaed04
commit 1b9fd16b9b
7 changed files with 147 additions and 3 deletions
+23
View File
@@ -0,0 +1,23 @@
import { View, Text, StyleSheet } from 'react-native';
export default function MapScreen() {
return (
<View style={styles.container}>
<Text style={styles.title}>Mapa de Farmacias</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F2F2F7',
},
title: {
fontSize: 24,
fontWeight: 'bold',
color: '#1C1C1E',
},
});