Skip to content

Commit

Permalink
Merge pull request #50 from Hemu21/QRGEN
Browse files Browse the repository at this point in the history
[ADD] a QR Code Generator added
  • Loading branch information
smilewithkhushi authored May 25, 2024
2 parents 75b7889 + 54483ad commit c02a6c2
Show file tree
Hide file tree
Showing 6 changed files with 594 additions and 6 deletions.
7 changes: 7 additions & 0 deletions App.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import AddTaskScreen from "./src/screens/ToDoList/addTask";
import QRScanner from "./src/screens/QRScanner/qrScanner";
import MovieFinder from './src/screens/MovieFinder/MovieFinder';
import HexColorGeneratorScreen from "./src/screens/HexColorGenerator/HexColorGeneratorScreen";
import QRCodeGenerator from "./src/screens/QRGenerator/QRGenerator";

export default function App() {
const Stack = createNativeStackNavigator();
Expand Down Expand Up @@ -89,6 +90,12 @@ export default function App() {
component={QRScanner}
options={{ headerShown: true, animation: "slide_from_right" }}
/>

<Stack.Screen
name="QR Generator"
component={QRCodeGenerator}
options={{ headerShown: true, animation: "slide_from_right" }}
/>
</Stack.Navigator>
</NavigationContainer>
);
Expand Down
Loading

0 comments on commit c02a6c2

Please sign in to comment.