Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
Generated by create-expo-app 2.1.1.
  • Loading branch information
proalaa committed Mar 20, 2024
0 parents commit 171c05a
Show file tree
Hide file tree
Showing 6 changed files with 14,181 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
node_modules/
.expo/
dist/
npm-debug.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision
*.orig.*
web-build/

# macOS
.DS_Store
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Expo Router Example

Use [`expo-router`](https://docs.expo.dev/router/introduction/) to build native navigation using files in the `app/` directory.

## 🚀 How to use

```sh
npx create-expo-app -e with-router
```

## 📝 Notes

- [Expo Router: Docs](https://docs.expo.dev/router/introduction/)
13 changes: 13 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"expo": {
"scheme": "acme",
"web": {
"bundler": "metro"
},
"plugins": [
"expo-router"
],
"name": "react_native_course",
"slug": "react_native_course"
}
}
7 changes: 7 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = function (api) {
api.cache(true);
return {
presets: ["babel-preset-expo"],
plugins: ["expo-router/babel"],
};
};
Loading

0 comments on commit 171c05a

Please sign in to comment.