├── .gitignore ├── README.md ├── app.json ├── app ├── (tabs) │ ├── _layout.tsx │ ├── explore.tsx │ └── index.tsx ├── +html.tsx ├── +not-found.tsx └── _layout.tsx ├── assets ├── fonts │ └── SpaceMono-Regular.ttf └── images │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ ├── partial-react-logo.png │ ├── react-logo.png │ ├── react-logo@2x.png │ ├── react-logo@3x.png │ └── splash.png ├── babel.config.js ├── bun.lockb ├── components ├── Collapsible.tsx ├── ExternalLink.tsx ├── HelloWave.tsx ├── ParallaxScrollView.tsx ├── ThemedText.tsx ├── ThemedView.tsx ├── __tests__ │ ├── ThemedText-test.tsx │ └── __snapshots__ │ │ └── ThemedText-test.tsx.snap ├── bottom-tabs.tsx └── navigation │ └── TabBarIcon.tsx ├── constants └── Colors.ts ├── hooks ├── useColorScheme.ts ├── useColorScheme.web.ts └── useThemeColor.ts ├── package.json ├── scripts └── reset-project.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/app.json -------------------------------------------------------------------------------- /app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /app/(tabs)/explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/app/(tabs)/explore.tsx -------------------------------------------------------------------------------- /app/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/app/(tabs)/index.tsx -------------------------------------------------------------------------------- /app/+html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/app/+html.tsx -------------------------------------------------------------------------------- /app/+not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/app/+not-found.tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/assets/images/react-logo.png -------------------------------------------------------------------------------- /assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/babel.config.js -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/bun.lockb -------------------------------------------------------------------------------- /components/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/components/Collapsible.tsx -------------------------------------------------------------------------------- /components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/components/ExternalLink.tsx -------------------------------------------------------------------------------- /components/HelloWave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/components/HelloWave.tsx -------------------------------------------------------------------------------- /components/ParallaxScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/components/ParallaxScrollView.tsx -------------------------------------------------------------------------------- /components/ThemedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/components/ThemedText.tsx -------------------------------------------------------------------------------- /components/ThemedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/components/ThemedView.tsx -------------------------------------------------------------------------------- /components/__tests__/ThemedText-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/components/__tests__/ThemedText-test.tsx -------------------------------------------------------------------------------- /components/__tests__/__snapshots__/ThemedText-test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/components/__tests__/__snapshots__/ThemedText-test.tsx.snap -------------------------------------------------------------------------------- /components/bottom-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/components/bottom-tabs.tsx -------------------------------------------------------------------------------- /components/navigation/TabBarIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/components/navigation/TabBarIcon.tsx -------------------------------------------------------------------------------- /constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/constants/Colors.ts -------------------------------------------------------------------------------- /hooks/useColorScheme.ts: -------------------------------------------------------------------------------- 1 | export { useColorScheme } from 'react-native'; 2 | -------------------------------------------------------------------------------- /hooks/useColorScheme.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/hooks/useColorScheme.web.ts -------------------------------------------------------------------------------- /hooks/useThemeColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/hooks/useThemeColor.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/package.json -------------------------------------------------------------------------------- /scripts/reset-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/scripts/reset-project.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvanBacon/expo-router-react-native-bottom-tabs/HEAD/tsconfig.json --------------------------------------------------------------------------------