File tree Expand file tree Collapse file tree 7 files changed +24377
-0
lines changed
Expand file tree Collapse file tree 7 files changed +24377
-0
lines changed Original file line number Diff line number Diff line change 1+ node_modules /
2+ .expo /
3+ dist /
4+ npm-debug. *
5+ * .jks
6+ * .p8
7+ * .p12
8+ * .key
9+ * .mobileprovision
10+ * .orig. *
11+ web-build /
12+
13+ # macOS
14+ .DS_Store
Original file line number Diff line number Diff line change 1+ # Expo Router Example
2+
3+ Use [ ` expo-router ` ] ( https://expo.github.io/router ) to build native navigation using files in the ` app/ ` directory.
4+
5+ ## 🚀 How to use
6+
7+ ``` sh
8+ npx create-react-native-app -t with-router
9+ ```
10+
11+ ## 📝 Notes
12+
13+ - [ Expo Router: Docs] ( https://expo.github.io/router )
14+ - [ Expo Router: Repo] ( https://github.com/expo/router )
15+ - [ Request for Comments] ( https://github.com/expo/router/discussions/1 )
Original file line number Diff line number Diff line change 1+ {
2+ "expo" : {
3+ "scheme" : " acme" ,
4+ "web" : {
5+ "bundler" : " metro"
6+ },
7+ "name" : " JSMastaryYt" ,
8+ "slug" : " JSMastaryYt"
9+ }
10+ }
Original file line number Diff line number Diff line change 1+ module . exports = function ( api ) {
2+ api . cache ( true ) ;
3+ return {
4+ presets : [ "babel-preset-expo" ] ,
5+ plugins : [
6+ "@babel/plugin-proposal-export-namespace-from" ,
7+ "react-native-reanimated/plugin" ,
8+ require . resolve ( "expo-router/babel" ) ,
9+ ] ,
10+ } ;
11+ } ;
Original file line number Diff line number Diff line change 1+ import "expo-router/entry" ;
You can’t perform that action at this time.
0 commit comments