├── .gitignore ├── README.md ├── app-env.d.ts ├── app.json ├── app ├── _layout.tsx ├── contexts │ ├── ThemeColors.tsx │ └── ThemeContext.tsx ├── hooks │ └── useThemedNavigation.tsx ├── index.tsx └── screens │ ├── bottom-bar.tsx │ ├── card.tsx │ ├── chart.tsx │ ├── journal-cards.tsx │ ├── masonry.tsx │ ├── onboarding.tsx │ ├── video-card.tsx │ └── weather.tsx ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png ├── img │ ├── readme │ │ └── readme.jpg │ ├── thomino.jpg │ ├── user-1.jpg │ ├── user-2.jpg │ ├── user-3.jpg │ └── user-4.jpg ├── lottie │ ├── welcome-1.json │ ├── welcome-2.json │ └── welcome-3.json └── splash.png ├── babel.config.js ├── cesconfig.json ├── components.json ├── components ├── BottomBar.tsx ├── CounterCard.tsx ├── Header.tsx ├── JournalCard.tsx ├── SlideUp.tsx ├── ThemeToggle.tsx ├── ThemeToggleNew.tsx └── VideoCard.tsx ├── global.css ├── lib └── utils.ts ├── metro.config.js ├── nativewind-env.d.ts ├── package.json ├── postcss.config.js ├── prettier.config.js ├── tailwind.config.js ├── tsconfig.json └── utils ├── BackHandlerManager.tsx ├── date.ts └── useShadow.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/README.md -------------------------------------------------------------------------------- /app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app-env.d.ts -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app.json -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /app/contexts/ThemeColors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app/contexts/ThemeColors.tsx -------------------------------------------------------------------------------- /app/contexts/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app/contexts/ThemeContext.tsx -------------------------------------------------------------------------------- /app/hooks/useThemedNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app/hooks/useThemedNavigation.tsx -------------------------------------------------------------------------------- /app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app/index.tsx -------------------------------------------------------------------------------- /app/screens/bottom-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app/screens/bottom-bar.tsx -------------------------------------------------------------------------------- /app/screens/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app/screens/card.tsx -------------------------------------------------------------------------------- /app/screens/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app/screens/chart.tsx -------------------------------------------------------------------------------- /app/screens/journal-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app/screens/journal-cards.tsx -------------------------------------------------------------------------------- /app/screens/masonry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app/screens/masonry.tsx -------------------------------------------------------------------------------- /app/screens/onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app/screens/onboarding.tsx -------------------------------------------------------------------------------- /app/screens/video-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app/screens/video-card.tsx -------------------------------------------------------------------------------- /app/screens/weather.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/app/screens/weather.tsx -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/img/readme/readme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/assets/img/readme/readme.jpg -------------------------------------------------------------------------------- /assets/img/thomino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/assets/img/thomino.jpg -------------------------------------------------------------------------------- /assets/img/user-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/assets/img/user-1.jpg -------------------------------------------------------------------------------- /assets/img/user-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/assets/img/user-2.jpg -------------------------------------------------------------------------------- /assets/img/user-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/assets/img/user-3.jpg -------------------------------------------------------------------------------- /assets/img/user-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/assets/img/user-4.jpg -------------------------------------------------------------------------------- /assets/lottie/welcome-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/assets/lottie/welcome-1.json -------------------------------------------------------------------------------- /assets/lottie/welcome-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/assets/lottie/welcome-2.json -------------------------------------------------------------------------------- /assets/lottie/welcome-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/assets/lottie/welcome-3.json -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/babel.config.js -------------------------------------------------------------------------------- /cesconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/cesconfig.json -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/components.json -------------------------------------------------------------------------------- /components/BottomBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/components/BottomBar.tsx -------------------------------------------------------------------------------- /components/CounterCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/components/CounterCard.tsx -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /components/JournalCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/components/JournalCard.tsx -------------------------------------------------------------------------------- /components/SlideUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/components/SlideUp.tsx -------------------------------------------------------------------------------- /components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /components/ThemeToggleNew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/components/ThemeToggleNew.tsx -------------------------------------------------------------------------------- /components/VideoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/components/VideoCard.tsx -------------------------------------------------------------------------------- /global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/global.css -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/metro.config.js -------------------------------------------------------------------------------- /nativewind-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/nativewind-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/prettier.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/BackHandlerManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/utils/BackHandlerManager.tsx -------------------------------------------------------------------------------- /utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/utils/date.ts -------------------------------------------------------------------------------- /utils/useShadow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomino/expo-playground/HEAD/utils/useShadow.ts --------------------------------------------------------------------------------