Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jabedzaman committed Feb 11, 2023
1 parent 0831dd7 commit cb7935f
Show file tree
Hide file tree
Showing 7 changed files with 7,115 additions and 23,301 deletions.
56 changes: 25 additions & 31 deletions App.js
Original file line number Diff line number Diff line change
@@ -1,46 +1,40 @@
import * as React from "react";
import React from "react";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import Home from "./screens/Home";
import Settings from "./screens/Settings";
import About from "./screens/About";
import Searchhistory from "./screens/Searchhistory";
import History from "./screens/History";

const Stack = createStackNavigator();
const Stack = createNativeStackNavigator();

export default function App() {
const App = () => {
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen
name="Home"
options={{
headerShown: false,
headerShown: false,
}}
component={Home}
/>
<Stack.Screen
name="Settings"
options={{
headerShown: false,
}}
component={Settings}
/>
<Stack.Screen
name="About"
options={{
headerShown: false,
}}
component={About}
/>
<Stack.Screen
name="SearchHistory"
options={{
headerShown: false,
}}
component={Searchhistory}
/>
name="Home" component={Home} />
<Stack.Screen
options={{
headerShown: false,
}}
name="Settings" component={Settings} />
<Stack.Screen
options={{
headerShown: false,
}}
name="About" component={About} />
<Stack.Screen
options={{
headerShown: false,
}}
name="History" component={History} />
</Stack.Navigator>
</NavigationContainer>
);
}
};

export default App;
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
},
"extra": {
"eas": {
"projectId": "a2cde989-521c-4c6c-8948-336b09633922"
"projectId": "7010ca68-03dc-4a03-810e-78c34ab485b0"
}
}
}
Expand Down
Loading

0 comments on commit cb7935f

Please sign in to comment.