This is a React Native application powered by Expo.
Use Tilt for a unified development experience:
tilt upIf you don't want to use Tilt, follow these steps:
First, install dependencies with bun install.
Then, start the app with bun start and follow the instructions in the output.
Alternatively, you can start directly on a per-platform basis with bun android, bun ios, or bun web.
In the output, you'll find options to open the app in a
- development build
- Android emulator
- iOS simulator
- Expo Go, a limited sandbox for trying out app development with Expo
If you want full native control over your project (sometimes known as a "bare" React Native project), you can use Expo Prebuild:
bun expo prebuild
bun expo run:android
bun expo run:ios
prebuild generates the native iOS and Android projects.
run:android/run:ios builds and runs the app on the respective platform. After prebuilding, you can modify native code directly and use any React Native library with custom native modules.
The code in this repository is licensed under MIT, © Omni LLC. See LICENSE.md for more information.