// App.js import React from 'react'; import { NavigationContainer } from '@react-navigation/native'; import { createStackNavigator } from '@react-navigation/stack'; import { View, Text, Button, StyleSheet } from 'react-native'; const Stack = createStackNavigator(); function HomeScreen({ navigation }) { return ( Mi Explorador de Plantas

Bienvenido a tu explorador de plantas. Selecciona una opción para comenzar.

}> Listado de plantas guardadas
); } function BotanicaScreen() { return ( Artículos y explicación de botánica ); } export default function App() { return ( ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#e0ffe0', alignItems: 'center', justifyContent: 'center', padding: 20, }, title: { fontSize: 28, fontWeight: 'bold', marginBottom: 30, }, subtitle: { fontSize: 20, textAlign: 'center', }, });
My Page Title