Skip to content

Commit

Permalink
improved UI and added params
Browse files Browse the repository at this point in the history
  • Loading branch information
Josephstallone699 committed Jun 24, 2022
1 parent 3bf8c3a commit 54fa119
Show file tree
Hide file tree
Showing 22 changed files with 240 additions and 210 deletions.
29 changes: 6 additions & 23 deletions App.js
Original file line number Diff line number Diff line change
@@ -1,26 +1,9 @@
import * as React from "react";
import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import HomeScreen from "./HomeScreen";
import Screenone from "./screens/Screenone";
import Screentwo from "./screens/ScreenTwo";
import Screenthree from "./screens/Screenthree";
import Screenfour from "./screens/Screenfour";
import 'react-native-gesture-handler';
import React, { useState } from "react";

const Stack = createNativeStackNavigator();
import Navigator from "./routes/HomeStack";

function App() {
return (
<NavigationContainer>
<Stack.Navigator initialRouteName="Home">
<Stack.Screen name="Home" component={HomeScreen} />
<Stack.Screen name="Details1" component={Screenone} />
<Stack.Screen name="Details2" component={Screentwo} />
<Stack.Screen name="Details3" component={Screenthree} />
<Stack.Screen name="Details4" component={Screenfour} />
</Stack.Navigator>
</NavigationContainer>
);
export default function App() {
const [fontsLoaded, setFontsLoaded] = useState(false);
return <Navigator />;
}

export default App;
51 changes: 0 additions & 51 deletions HomeScreen.js

This file was deleted.

Binary file removed assets/adaptive-icon.png
Binary file not shown.
Binary file removed assets/favicon.png
Binary file not shown.
Binary file removed assets/icon.png
Binary file not shown.
Binary file added assets/image-gallery-cone.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/image-graphic-design.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/image-header.jpg
Binary file not shown.
Binary file modified assets/image-stand-out.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/image-transform.jpg
Binary file not shown.
Binary file added assets/image-transform.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/splash.png
Binary file not shown.
Loading

0 comments on commit 54fa119

Please sign in to comment.