import * as React from 'react'; import { Button, View, Image} from 'react-native'; import { createDrawerNavigator } from '@react-navigation/drawer'; import { NavigationContainer } from '@react-navigation/native'; import About from './screens/about'; import Gallery from './screens/gallery'; import Calendario from './screens/calendar'; import Donate from './screens/donar'; import Solicitar from './screens/solicitar'; import Account from './screens/account'; import Header from './shared/header'; const screens = { About: { screen: About, navigationOptions: ({navigation}) => { return { headerTitle: () =>
, } } }, } function HomeScreen({ navigation }) { return (