diff --git a/mobile-ui/App.js b/mobile-ui/App.js
index 8c45b000..61dbd821 100644
--- a/mobile-ui/App.js
+++ b/mobile-ui/App.js
@@ -4,24 +4,48 @@ import {
} from "native-base";
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
+import { createBottomTabNavigator} from '@react-navigation/bottom-tabs';
import LogIn from "./components/LogIn";
import Home from "./components/Home";
import RecoverPassword from "./components/RecoverPassword";
+import Reservas from "./components/Reservas";
+import Profile from "./components/Profile";
const Stack = createNativeStackNavigator();
+const Tab = createBottomTabNavigator();
+
+function HomeTab() {
+
+ return (
+
+
+
+
+
+ )
+}
export default function App() {
return (
-
-
+
+
+
+
-
);
}
\ No newline at end of file
diff --git a/mobile-ui/components/Home.js b/mobile-ui/components/Home.js
index f344f44c..d8806dc9 100644
--- a/mobile-ui/components/Home.js
+++ b/mobile-ui/components/Home.js
@@ -1,60 +1,103 @@
-import React from 'react';
+import React from "react";
import {
Text,
HStack,
+ Badge,
Box,
- Icon,
- MaterialIcons,
- Center,
- Pressable
+Pressable,
+ Spacer,
+ Flex,
+ Center
} from "native-base";
+ import { MaterialCommunityIcons } from '@expo/vector-icons';
+export default function Home(){
-import { MaterialCommunityIcons } from '@expo/vector-icons';
-
-export default function Home({navigation}){
-
- const [selected, setSelected] = React.useState(1);
-
+ const [selected, setSelected] = React.useState(0);
return (
+
+
+ console.log("I'm Pressed")} rounded="8" overflow="hidden" borderWidth="1" borderColor="coolGray.300" maxW="96" shadow="3" bg="coolGray.100" p="5" marginTop="4">
+
+
+
+ Comunicado
+
+
+
+ 1 month ago
+
+
+
+ Administrador de Comunidad
+
+
+ Notificacion sobre la aplicacion
+
+
+
+
+ console.log("I'm Pressed")} rounded="8" overflow="hidden" borderWidth="1" borderColor="coolGray.300" maxW="96" shadow="3" bg="coolGray.100" p="5" marginTop="4">
+
+
+
+ Comunicado
+
+
+
+ 1 month ago
+
+
+
+ Administrador General
+
+
+ Notificacion sobre la aplicacion
+
+
+
+
+
+ //
+
+ //
+ //
+
+ // setSelected(0) && navigation.navigate('Home')}>
+ //
+ // } color="white" size="md" />
+ //
+ // Inicio
+ //
+ //
+ //
+
+
+ // setSelected(1) && ( () => navigation.navigate('Reservas'))}>
+ //
+ // } color="white" size="md" />
+ //
+ // Reservas
+ //
+ //
+ //
-
-
-
- setSelected(0)}>
-
- } color="white" size="sm" />
-
- Inicio
-
-
-
- setSelected(1)}>
-
- } color="white" size="sm" />
-
- Comunicados
-
-
-
- setSelected(2)}>
-
- } color="white" size="sm" />
-
- Reservas
-
-
-
- setSelected(3)}>
-
- } color="white" size="sm" />
-
- Perfil
-
-
-
-
-
-
- );
+ // setSelected(2)}>
+ //
+ // } color="white" size="md" />
+ //
+ // Perfil
+ //
+ //
+ //
+
+
+ //
+ //
+
+ )
}
\ No newline at end of file
diff --git a/mobile-ui/components/LogIn.js b/mobile-ui/components/LogIn.js
index fd63d793..63e5ba83 100644
--- a/mobile-ui/components/LogIn.js
+++ b/mobile-ui/components/LogIn.js
@@ -7,10 +7,8 @@ import {
VStack,
Box,
FormControl,
- Input,
Button,
- Image,
- Container
+ Image
} from "native-base";
import logo from "../assets/logo-katoikia.png";
import { Entypo } from '@expo/vector-icons';
@@ -115,7 +113,7 @@ export default function LogIn({navigation}) {
-