parent
0fa9df4c14
commit
6d8561da75
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,14 +1,7 @@
|
||||
{
|
||||
"ExpandedNodes": [
|
||||
"",
|
||||
"\\components",
|
||||
"\\model",
|
||||
"\\navigation",
|
||||
"\\pages",
|
||||
"\\redux",
|
||||
"\\redux\\actions",
|
||||
"\\redux\\reducers"
|
||||
""
|
||||
],
|
||||
"SelectedNode": "\\navigation\\TabBar.tsx",
|
||||
"SelectedNode": "\\C:\\Users\\Siph9\\Source\\Repos\\LEARNIHON",
|
||||
"PreviewInSolutionExplorer": false
|
||||
}
|
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
import { NavigationContainer } from "@react-navigation/native";
|
||||
import { createStackNavigator, StackNavigationOptions } from "@react-navigation/stack";
|
||||
import React from "react";
|
||||
import Detail from "../pages/Detail";
|
||||
import List from "../pages/List";
|
||||
|
||||
export default function KanjiStackNavigator() {
|
||||
|
||||
const Stack = createStackNavigator();
|
||||
|
||||
return (
|
||||
<Stack.Navigator initialRouteName="List"
|
||||
screenOptions={stackOptions}
|
||||
>
|
||||
<Stack.Screen name="List" component={List} />
|
||||
<Stack.Screen name="Detail" component={Detail}/>
|
||||
</Stack.Navigator>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
const stackOptions: StackNavigationOptions = {
|
||||
headerShown: false,
|
||||
presentation: "modal"
|
||||
};
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue