Skip to content

Commit

Permalink
Merge pull request #79 from akjain1509/master
Browse files Browse the repository at this point in the history
an Expense Tracker Screen (GSSOC_24)
  • Loading branch information
smilewithkhushi authored Jun 22, 2024
2 parents 485f1f0 + bae5451 commit 9c30ebb
Show file tree
Hide file tree
Showing 6 changed files with 1,305 additions and 1,204 deletions.
24 changes: 19 additions & 5 deletions App.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ import AnimeFinder from "./src/screens/AnimeFinder/AnimeFinder";
import Pokedex from "./src/screens/Pokedex/Pokedex";
import AddWorkout from "./src/screens/FitnessTracker/AddWorkout";
import WorkoutOverview from "./src/screens/FitnessTracker/WorkoutOverview";
import AddExpense from "./src/screens/ExpenseTracker/AddExpense";
import Dashboard from "./src/screens/ExpenseTracker/Dasboard";
import CodingQuiz from "./src/screens/CodingQuiz/CodingQuiz";
import TimerHome from "./src/screens/Timer/TimerHome";

Expand Down Expand Up @@ -96,6 +98,18 @@ export default function App() {
options={{ headerShown: true, animation: "slide_from_right" }}
/>

<Stack.Screen
name="Dashboard"
component={Dashboard}
options={{ headerShown: true, animation: "slide_from_right" }}
/>

<Stack.Screen
name="Add Expense"
component={AddExpense}
options={{ headerShown: true, animation: "slide_from_right" }}
/>

<Stack.Screen
name="QR Scanner"
component={QRScanner}
Expand Down Expand Up @@ -187,11 +201,11 @@ export default function App() {
},
}}
/>
<Stack.Screen
name="Coding Quiz"
component={CodingQuiz}
options={{ headerShown: true, animation: "slide_from_right" }}
/>
<Stack.Screen
name="Coding Quiz"
component={CodingQuiz}
options={{ headerShown: true, animation: "slide_from_right" }}
/>
</Stack.Navigator>
</NavigationContainer>
</GestureHandlerRootView>
Expand Down
Loading

0 comments on commit 9c30ebb

Please sign in to comment.