code/tamagui.dev/data/docs/guides/create-tamagui-app.mdx
Set up a starter repo to help you learn about and bootstrap your Tamagui app:
There are four starter templates:
/pages and /app
dir).@tamagui/metro-plugin.npm create tamagui@latest
Check out the source of the templates.
A big shout out to Fernando Rojo for creating Solito, a great library for sharing all your views between Expo and Next.js, and the bootstrap repo we borrowed from.
The starter-free app requires yarn to run.
To run the app:
cd myapp
yarn
yarn web # Web local dev
yarn native # Expo local dev (only for `starter-free`)
starter-free)tamagui for cross-platform views, themes and animationssolito for cross-platform navigationexpo-router for having same routing concepts between web and nativeBy integrating Tamagui, expo-router, Solito, and Next.js you can enjoy
the power and simplicity of creating universal apps.
apps entry points for each app
exponextpackages shared packages across apps
app you'll be importing most files from app/
features (don't use a screens folder. organize by feature.)provider (all the providers that wrap the app, and some no-ops for Web.)navigation only for starter-free template, contains the navigation code
for RNYou can add other folders inside of packages/ if you know what you're doing
and have a good reason to.
Install dependencies: yarn
Next.js local dev: yarn web
yarn nextExpo local dev: yarn native
expo startIf you're installing a JavaScript-only dependency that will be used across
platforms, install it in packages/app:
cd packages/app
yarn add date-fns
cd ../..
yarn
If you're installing a library with any native code, you must install it in
apps/expo:
cd apps/expo
yarn add react-native-reanimated
cd ../..
yarn
You can also install the native library inside of packages/app if you want to
get autoimport for that package inside of the app folder. However, you need to
be careful and install the exact same version in both packages. If the
versions mismatch at all, you'll potentially get terrible bugs. This is a
classic monorepo issue. I use lerna-update-wizard to help with this (you don't
need to use Lerna to use that lib).