Skip to content

Commit

Permalink
Merge pull request #6 from yingsleeps/results-screen
Browse files Browse the repository at this point in the history
Results screen
  • Loading branch information
yingsleeps authored Apr 21, 2024
2 parents b43a1a5 + 557ed28 commit c5cdfb5
Show file tree
Hide file tree
Showing 8 changed files with 153 additions and 16,296 deletions.
7 changes: 7 additions & 0 deletions App.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ import NavBar from './src/navigation/NavBar.js';
import DrawScreen from './src/screens/Draw.js';
import AlbumScreen from './src/screens/Album.js';
import Popup from './src/components/Popup.js';
import ResultScreen from './src/screens/Result.js';
import CameraComponent from './src/screens/Camera.js';



const Stack = createNativeStackNavigator();

export default function App() {
Expand Down Expand Up @@ -48,6 +50,11 @@ export default function App() {
component={Popup}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Result"
component={ResultScreen}
options={{ headerShown: false }}
/>
<Stack.Screen
name="Camera"
component={CameraComponent}
Expand Down
Loading

0 comments on commit c5cdfb5

Please sign in to comment.