├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc ├── .npmrc ├── .vscode └── extensions.json ├── README.md ├── apps ├── expo │ ├── .gitignore │ ├── .tamagui │ │ └── tamagui.config.json │ ├── app.config.js │ ├── babel.config.js │ ├── eas.json │ ├── metro.config.js │ ├── package.json │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── (tabs) │ │ │ │ ├── _layout.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── two.tsx │ │ │ ├── +html.tsx │ │ │ ├── [...missing].tsx │ │ │ ├── _layout.tsx │ │ │ └── modal.tsx │ │ └── assets │ │ │ └── images │ │ │ ├── adaptive-icon.png │ │ │ ├── favicon.png │ │ │ ├── icon.png │ │ │ └── splash.png │ ├── tamagui.config.ts │ ├── tsconfig.app.json │ └── tsconfig.json ├── next │ ├── .gitignore │ ├── babel.config.js │ ├── index.d.ts │ ├── next-env.d.ts │ ├── next.config.mjs │ ├── project.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ └── pages │ │ │ ├── _app.tsx │ │ │ ├── _document.tsx │ │ │ └── index.tsx │ ├── tamagui.config.ts │ └── tsconfig.json ├── storybook-rn │ ├── .storybook │ │ ├── decorator.tsx │ │ ├── index.tsx │ │ ├── main.ts │ │ └── preview.ts │ ├── app.config.js │ ├── babel.config.js │ ├── metro.config.js │ ├── package.json │ ├── project.json │ ├── src │ │ ├── App.tsx │ │ ├── main.tsx │ │ └── storybook.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.storybook.json └── web-react │ ├── .tamagui │ ├── tamagui.config.cjs │ └── tamagui.config.json │ ├── index.html │ ├── package.json │ ├── project.json │ ├── public │ └── favicon.ico │ ├── src │ ├── app.tsx │ ├── assets │ │ └── .gitkeep │ └── main.tsx │ ├── tamagui.config.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── vite.config.mts ├── babel.config.json ├── biome.json ├── migrations.json ├── nx.json ├── package.json ├── packages ├── components │ ├── .babelrc │ ├── project.json │ ├── src │ │ ├── components │ │ │ ├── Link.tsx │ │ │ ├── SimpleCard.stories.tsx │ │ │ ├── SimpleCard.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── tamagui.config.ts │ │ └── themes │ │ │ ├── colors-default.ts │ │ │ ├── colors-neon.ts │ │ │ ├── colors-pastel.ts │ │ │ ├── colors.ts │ │ │ ├── fonts.native.ts │ │ │ ├── fonts.ts │ │ │ ├── helpers.ts │ │ │ ├── palettes.ts │ │ │ ├── theme-generated.ts │ │ │ ├── theme.ts │ │ │ ├── token-colors.ts │ │ │ ├── token-radius.ts │ │ │ ├── token-size.ts │ │ │ ├── token-space.ts │ │ │ └── token-z-index.ts │ ├── tsconfig.json │ └── tsconfig.lib.json └── pages │ ├── benefits │ ├── .babelrc │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── screen.tsx │ │ └── tamagui.config.ts │ ├── tsconfig.json │ └── tsconfig.lib.json │ ├── provider │ ├── project.json │ ├── src │ │ ├── index.tsx │ │ ├── safe_area │ │ │ ├── SafeAreaProvider.native.tsx │ │ │ ├── SafeAreaProvider.tsx │ │ │ └── index.ts │ │ ├── tamagui.config.ts │ │ ├── tamagui │ │ │ ├── TamaguiProvider.tsx │ │ │ └── index.ts │ │ └── theme │ │ │ ├── UniversalThemeProvider.native.tsx │ │ │ ├── UniversalThemeProvider.tsx │ │ │ └── index.ts │ ├── tsconfig.json │ └── tsconfig.lib.json │ ├── resources │ ├── .babelrc │ ├── README.md │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── screen.tsx │ │ └── tamagui.config.ts │ ├── tsconfig.json │ └── tsconfig.lib.json │ └── welcome │ ├── .babelrc │ ├── README.md │ ├── project.json │ ├── src │ ├── index.ts │ ├── layout.web.tsx │ ├── screen.tsx │ └── tamagui.config.ts │ ├── tsconfig.json │ └── tsconfig.lib.json ├── syncpack.config.js ├── tools └── scripts │ ├── eas-build-post-install.mjs │ └── eas-build-pre-install.mjs ├── tsconfig.base.json └── vitest.workspace.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/README.md -------------------------------------------------------------------------------- /apps/expo/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/expo/.tamagui/tamagui.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/.tamagui/tamagui.config.json -------------------------------------------------------------------------------- /apps/expo/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/app.config.js -------------------------------------------------------------------------------- /apps/expo/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/babel.config.js -------------------------------------------------------------------------------- /apps/expo/eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/eas.json -------------------------------------------------------------------------------- /apps/expo/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/metro.config.js -------------------------------------------------------------------------------- /apps/expo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/package.json -------------------------------------------------------------------------------- /apps/expo/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/project.json -------------------------------------------------------------------------------- /apps/expo/src/app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/src/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /apps/expo/src/app/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/src/app/(tabs)/index.tsx -------------------------------------------------------------------------------- /apps/expo/src/app/(tabs)/two.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/src/app/(tabs)/two.tsx -------------------------------------------------------------------------------- /apps/expo/src/app/+html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/src/app/+html.tsx -------------------------------------------------------------------------------- /apps/expo/src/app/[...missing].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/src/app/[...missing].tsx -------------------------------------------------------------------------------- /apps/expo/src/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/src/app/_layout.tsx -------------------------------------------------------------------------------- /apps/expo/src/app/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/src/app/modal.tsx -------------------------------------------------------------------------------- /apps/expo/src/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/src/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /apps/expo/src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/src/assets/images/favicon.png -------------------------------------------------------------------------------- /apps/expo/src/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/src/assets/images/icon.png -------------------------------------------------------------------------------- /apps/expo/src/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/src/assets/images/splash.png -------------------------------------------------------------------------------- /apps/expo/tamagui.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/tamagui.config.ts -------------------------------------------------------------------------------- /apps/expo/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/tsconfig.app.json -------------------------------------------------------------------------------- /apps/expo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/expo/tsconfig.json -------------------------------------------------------------------------------- /apps/next/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/next/.gitignore -------------------------------------------------------------------------------- /apps/next/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/next/babel.config.js -------------------------------------------------------------------------------- /apps/next/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/next/index.d.ts -------------------------------------------------------------------------------- /apps/next/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/next/next-env.d.ts -------------------------------------------------------------------------------- /apps/next/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/next/next.config.mjs -------------------------------------------------------------------------------- /apps/next/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/next/project.json -------------------------------------------------------------------------------- /apps/next/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/next/public/favicon.ico -------------------------------------------------------------------------------- /apps/next/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/next/src/pages/_app.tsx -------------------------------------------------------------------------------- /apps/next/src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/next/src/pages/_document.tsx -------------------------------------------------------------------------------- /apps/next/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/next/src/pages/index.tsx -------------------------------------------------------------------------------- /apps/next/tamagui.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/next/tamagui.config.ts -------------------------------------------------------------------------------- /apps/next/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/next/tsconfig.json -------------------------------------------------------------------------------- /apps/storybook-rn/.storybook/decorator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/.storybook/decorator.tsx -------------------------------------------------------------------------------- /apps/storybook-rn/.storybook/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/.storybook/index.tsx -------------------------------------------------------------------------------- /apps/storybook-rn/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/.storybook/main.ts -------------------------------------------------------------------------------- /apps/storybook-rn/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/.storybook/preview.ts -------------------------------------------------------------------------------- /apps/storybook-rn/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/app.config.js -------------------------------------------------------------------------------- /apps/storybook-rn/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/babel.config.js -------------------------------------------------------------------------------- /apps/storybook-rn/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/metro.config.js -------------------------------------------------------------------------------- /apps/storybook-rn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/package.json -------------------------------------------------------------------------------- /apps/storybook-rn/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/project.json -------------------------------------------------------------------------------- /apps/storybook-rn/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/src/App.tsx -------------------------------------------------------------------------------- /apps/storybook-rn/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/src/main.tsx -------------------------------------------------------------------------------- /apps/storybook-rn/src/storybook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/src/storybook.ts -------------------------------------------------------------------------------- /apps/storybook-rn/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/tsconfig.app.json -------------------------------------------------------------------------------- /apps/storybook-rn/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/tsconfig.json -------------------------------------------------------------------------------- /apps/storybook-rn/tsconfig.storybook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/storybook-rn/tsconfig.storybook.json -------------------------------------------------------------------------------- /apps/web-react/.tamagui/tamagui.config.cjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web-react/.tamagui/tamagui.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/web-react/.tamagui/tamagui.config.json -------------------------------------------------------------------------------- /apps/web-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/web-react/index.html -------------------------------------------------------------------------------- /apps/web-react/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /apps/web-react/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/web-react/project.json -------------------------------------------------------------------------------- /apps/web-react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/web-react/public/favicon.ico -------------------------------------------------------------------------------- /apps/web-react/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/web-react/src/app.tsx -------------------------------------------------------------------------------- /apps/web-react/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/web-react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/web-react/src/main.tsx -------------------------------------------------------------------------------- /apps/web-react/tamagui.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/web-react/tamagui.config.ts -------------------------------------------------------------------------------- /apps/web-react/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/web-react/tsconfig.app.json -------------------------------------------------------------------------------- /apps/web-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/web-react/tsconfig.json -------------------------------------------------------------------------------- /apps/web-react/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/web-react/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/web-react/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/apps/web-react/vite.config.mts -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "babelrcRoots": ["*"] 3 | } 4 | -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/biome.json -------------------------------------------------------------------------------- /migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/migrations.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/package.json -------------------------------------------------------------------------------- /packages/components/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/.babelrc -------------------------------------------------------------------------------- /packages/components/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/project.json -------------------------------------------------------------------------------- /packages/components/src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/components/Link.tsx -------------------------------------------------------------------------------- /packages/components/src/components/SimpleCard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/components/SimpleCard.stories.tsx -------------------------------------------------------------------------------- /packages/components/src/components/SimpleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/components/SimpleCard.tsx -------------------------------------------------------------------------------- /packages/components/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/components/index.ts -------------------------------------------------------------------------------- /packages/components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/index.ts -------------------------------------------------------------------------------- /packages/components/src/tamagui.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/tamagui.config.ts -------------------------------------------------------------------------------- /packages/components/src/themes/colors-default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/colors-default.ts -------------------------------------------------------------------------------- /packages/components/src/themes/colors-neon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/colors-neon.ts -------------------------------------------------------------------------------- /packages/components/src/themes/colors-pastel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/colors-pastel.ts -------------------------------------------------------------------------------- /packages/components/src/themes/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/colors.ts -------------------------------------------------------------------------------- /packages/components/src/themes/fonts.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/fonts.native.ts -------------------------------------------------------------------------------- /packages/components/src/themes/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/fonts.ts -------------------------------------------------------------------------------- /packages/components/src/themes/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/helpers.ts -------------------------------------------------------------------------------- /packages/components/src/themes/palettes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/palettes.ts -------------------------------------------------------------------------------- /packages/components/src/themes/theme-generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/theme-generated.ts -------------------------------------------------------------------------------- /packages/components/src/themes/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/theme.ts -------------------------------------------------------------------------------- /packages/components/src/themes/token-colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/token-colors.ts -------------------------------------------------------------------------------- /packages/components/src/themes/token-radius.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/token-radius.ts -------------------------------------------------------------------------------- /packages/components/src/themes/token-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/token-size.ts -------------------------------------------------------------------------------- /packages/components/src/themes/token-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/token-space.ts -------------------------------------------------------------------------------- /packages/components/src/themes/token-z-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/src/themes/token-z-index.ts -------------------------------------------------------------------------------- /packages/components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/tsconfig.json -------------------------------------------------------------------------------- /packages/components/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/components/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/pages/benefits/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/benefits/.babelrc -------------------------------------------------------------------------------- /packages/pages/benefits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/benefits/README.md -------------------------------------------------------------------------------- /packages/pages/benefits/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/benefits/project.json -------------------------------------------------------------------------------- /packages/pages/benefits/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './screen' 2 | -------------------------------------------------------------------------------- /packages/pages/benefits/src/screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/benefits/src/screen.tsx -------------------------------------------------------------------------------- /packages/pages/benefits/src/tamagui.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/benefits/src/tamagui.config.ts -------------------------------------------------------------------------------- /packages/pages/benefits/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/benefits/tsconfig.json -------------------------------------------------------------------------------- /packages/pages/benefits/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/benefits/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/pages/provider/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/provider/project.json -------------------------------------------------------------------------------- /packages/pages/provider/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/provider/src/index.tsx -------------------------------------------------------------------------------- /packages/pages/provider/src/safe_area/SafeAreaProvider.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/provider/src/safe_area/SafeAreaProvider.native.tsx -------------------------------------------------------------------------------- /packages/pages/provider/src/safe_area/SafeAreaProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/provider/src/safe_area/SafeAreaProvider.tsx -------------------------------------------------------------------------------- /packages/pages/provider/src/safe_area/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SafeAreaProvider' 2 | -------------------------------------------------------------------------------- /packages/pages/provider/src/tamagui.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/provider/src/tamagui.config.ts -------------------------------------------------------------------------------- /packages/pages/provider/src/tamagui/TamaguiProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/provider/src/tamagui/TamaguiProvider.tsx -------------------------------------------------------------------------------- /packages/pages/provider/src/tamagui/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TamaguiProvider' 2 | -------------------------------------------------------------------------------- /packages/pages/provider/src/theme/UniversalThemeProvider.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/provider/src/theme/UniversalThemeProvider.native.tsx -------------------------------------------------------------------------------- /packages/pages/provider/src/theme/UniversalThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/provider/src/theme/UniversalThemeProvider.tsx -------------------------------------------------------------------------------- /packages/pages/provider/src/theme/index.ts: -------------------------------------------------------------------------------- 1 | export * from './UniversalThemeProvider' 2 | -------------------------------------------------------------------------------- /packages/pages/provider/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/provider/tsconfig.json -------------------------------------------------------------------------------- /packages/pages/provider/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/provider/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/pages/resources/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/resources/.babelrc -------------------------------------------------------------------------------- /packages/pages/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/resources/README.md -------------------------------------------------------------------------------- /packages/pages/resources/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/resources/project.json -------------------------------------------------------------------------------- /packages/pages/resources/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './screen' 2 | -------------------------------------------------------------------------------- /packages/pages/resources/src/screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/resources/src/screen.tsx -------------------------------------------------------------------------------- /packages/pages/resources/src/tamagui.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/resources/src/tamagui.config.ts -------------------------------------------------------------------------------- /packages/pages/resources/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/resources/tsconfig.json -------------------------------------------------------------------------------- /packages/pages/resources/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/resources/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/pages/welcome/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/welcome/.babelrc -------------------------------------------------------------------------------- /packages/pages/welcome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/welcome/README.md -------------------------------------------------------------------------------- /packages/pages/welcome/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/welcome/project.json -------------------------------------------------------------------------------- /packages/pages/welcome/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/welcome/src/index.ts -------------------------------------------------------------------------------- /packages/pages/welcome/src/layout.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/welcome/src/layout.web.tsx -------------------------------------------------------------------------------- /packages/pages/welcome/src/screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/welcome/src/screen.tsx -------------------------------------------------------------------------------- /packages/pages/welcome/src/tamagui.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/welcome/src/tamagui.config.ts -------------------------------------------------------------------------------- /packages/pages/welcome/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/welcome/tsconfig.json -------------------------------------------------------------------------------- /packages/pages/welcome/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/packages/pages/welcome/tsconfig.lib.json -------------------------------------------------------------------------------- /syncpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/syncpack.config.js -------------------------------------------------------------------------------- /tools/scripts/eas-build-post-install.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/tools/scripts/eas-build-post-install.mjs -------------------------------------------------------------------------------- /tools/scripts/eas-build-pre-install.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/tools/scripts/eas-build-pre-install.mjs -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /vitest.workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillempuche/nx-expo-next-tamagui/HEAD/vitest.workspace.ts --------------------------------------------------------------------------------