Last active
March 29, 2022 11:07
-
-
Save Yassir4/746fd6e032d0fa2da9459319bf16d521 to your computer and use it in GitHub Desktop.
Revisions
-
Yassir4 revised this gist
Mar 29, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,7 +9,7 @@ function App() { <Stack.Navigator> <Stack.Screen name="Home" component={HomeScreen} /> </Stack.Navigator> </View> </PortalProvider> </NavigationContainer> ); -
Yassir4 revised this gist
Mar 29, 2022 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,14 +3,13 @@ function App() { <NavigationContainer> <PortalProvider> {/* view wrapper to fix the menu display in android */} <View style={{flex: 1}}> {/* our menu portal Host */} <PortalHost name="menu" /> <Stack.Navigator> <Stack.Screen name="Home" component={HomeScreen} /> </Stack.Navigator> <View /> </PortalProvider> </NavigationContainer> ); -
Yassir4 revised this gist
Mar 29, 2022 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,9 +2,10 @@ function App() { return ( <NavigationContainer> <PortalProvider> {/* view wrapper to fix the menu display in android */} <View style={{flex: 1}}> {/* our menu portal Host */} <PortalHost name="menu" /> <Stack.Navigator> <Stack.Screen name="Home" component={HomeScreen} /> -
Yassir4 revised this gist
Mar 29, 2022 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,11 +2,14 @@ function App() { return ( <NavigationContainer> <PortalProvider> // view wrapper to fix the menu display in android <View style={{flex: 1}}> // our menu portal Host <PortalHost name="menu" /> <Stack.Navigator> <Stack.Screen name="Home" component={HomeScreen} /> </Stack.Navigator> <View> </PortalProvider> </NavigationContainer> ); -
Yassir4 revised this gist
Feb 20, 2022 . No changes.There are no files selected for viewing
-
Yassir4 created this gist
Feb 20, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ function App() { return ( <NavigationContainer> <PortalProvider> // our menu portal Host <PortalHost name="menu" /> <Stack.Navigator> <Stack.Screen name="Home" component={HomeScreen} /> </Stack.Navigator> </PortalProvider> </NavigationContainer> ); }