├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── bin └── create-expo-app.js ├── package.json └── template ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── App.js ├── jest.config.js ├── scripts └── env.js ├── src ├── components │ ├── App.tsx │ ├── AppNavigator.tsx │ ├── common │ │ └── Heading.tsx │ └── home │ │ └── HomeScreen.tsx ├── constants │ ├── env.ts │ ├── fonts.ts │ ├── images.ts │ ├── metrics.ts │ ├── routes.ts │ └── theme.ts ├── jest │ └── setup.ts ├── types │ └── index.ts └── utils │ ├── __tests__ │ └── text.test.ts │ └── text.ts ├── tsconfig.json └── typings └── index.d.ts /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/README.md -------------------------------------------------------------------------------- /bin/create-expo-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/bin/create-expo-app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/package.json -------------------------------------------------------------------------------- /template/.eslintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/.eslintrc.js -------------------------------------------------------------------------------- /template/.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/.github/workflows/main.yml -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .expo 3 | node_modules 4 | -------------------------------------------------------------------------------- /template/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/.prettierignore -------------------------------------------------------------------------------- /template/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/.prettierrc -------------------------------------------------------------------------------- /template/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/App.js -------------------------------------------------------------------------------- /template/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/jest.config.js -------------------------------------------------------------------------------- /template/scripts/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/scripts/env.js -------------------------------------------------------------------------------- /template/src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/src/components/App.tsx -------------------------------------------------------------------------------- /template/src/components/AppNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/src/components/AppNavigator.tsx -------------------------------------------------------------------------------- /template/src/components/common/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/src/components/common/Heading.tsx -------------------------------------------------------------------------------- /template/src/components/home/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/src/components/home/HomeScreen.tsx -------------------------------------------------------------------------------- /template/src/constants/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/src/constants/env.ts -------------------------------------------------------------------------------- /template/src/constants/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/src/constants/fonts.ts -------------------------------------------------------------------------------- /template/src/constants/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/src/constants/images.ts -------------------------------------------------------------------------------- /template/src/constants/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/src/constants/metrics.ts -------------------------------------------------------------------------------- /template/src/constants/routes.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | HOME: 'Home', 3 | }; 4 | -------------------------------------------------------------------------------- /template/src/constants/theme.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /template/src/jest/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/src/jest/setup.ts -------------------------------------------------------------------------------- /template/src/types/index.ts: -------------------------------------------------------------------------------- 1 | export interface Env { 2 | name: string; 3 | } 4 | -------------------------------------------------------------------------------- /template/src/utils/__tests__/text.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/src/utils/__tests__/text.test.ts -------------------------------------------------------------------------------- /template/src/utils/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/src/utils/text.ts -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppAndFlow/create-expo-app/HEAD/template/tsconfig.json -------------------------------------------------------------------------------- /template/typings/index.d.ts: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------