From eb25480919c73af5c02771c6124494f415f7a063 Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Sat, 1 Apr 2023 17:44:58 +0200 Subject: Working app --- modules/Home.js | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 modules/Home.js (limited to 'modules/Home.js') diff --git a/modules/Home.js b/modules/Home.js new file mode 100644 index 0000000..aec9bf6 --- /dev/null +++ b/modules/Home.js @@ -0,0 +1,37 @@ +import * as React from 'react'; +import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; + +export default function Home(props) { + return ( + + props.navigation.navigate("main")}>Geo App + Find and save your position + Use map + + ) +} + +const styles = StyleSheet.create({ + cont: { + flexDirection: "column", + marginTop: 10, + paddingTop: 10, + backgroundColor: "#3D54BB", + justifyContent: "center", + alignItems: "center", + height: "100%", + }, + btn: { + margin: 15, + }, + h1: { + color: "white", + fontSize: 60, + fontWeight: "bold", + }, + span: { + color: "white", + fontSize: 22, + } +}) + -- cgit v1.3.1