Created
July 11, 2018 11:42
-
-
Save rajatk16/d099482f319edb5057a56ec0b2729c7a to your computer and use it in GitHub Desktop.
This file contains 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 characters
<script> | |
import { StackNavigator, DrawerNavigator } from "vue-native-router"; | |
const AppNavigation = StackNavigator( | |
{ | |
Login: { screen: LoginScreen }, | |
Drawer: { screen: Drawer } | |
}, | |
{ | |
initialRouteName: "Login", | |
headerMode: "none" | |
} | |
); | |
export default { | |
components: { AppNavigation } | |
}; | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment