├── .gitignore ├── README.md ├── app.json ├── babel.config.js ├── global.d.ts ├── metro.config.js ├── nativewind-env.d.ts ├── package.json ├── src ├── app │ ├── _layout.tsx │ ├── history.tsx │ ├── index.tsx │ └── profile │ │ ├── _layout.tsx │ │ └── index.tsx └── global.css ├── tailwind.config.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/babel.config.js -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/global.d.ts -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/metro.config.js -------------------------------------------------------------------------------- /nativewind-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/nativewind-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/package.json -------------------------------------------------------------------------------- /src/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/src/app/_layout.tsx -------------------------------------------------------------------------------- /src/app/history.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/src/app/history.tsx -------------------------------------------------------------------------------- /src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/src/app/index.tsx -------------------------------------------------------------------------------- /src/app/profile/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/src/app/profile/_layout.tsx -------------------------------------------------------------------------------- /src/app/profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/src/app/profile/index.tsx -------------------------------------------------------------------------------- /src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/src/global.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonnysangha/fitness-app-expo-react-native-starter-nativewind-typescript/HEAD/tsconfig.json --------------------------------------------------------------------------------