├── .gitignore ├── README.md ├── app.json ├── app ├── (tabs) │ ├── _layout.tsx │ ├── explore.tsx │ ├── index.tsx │ ├── learn.tsx │ ├── profile.tsx │ ├── swap.tsx │ └── wallet.tsx ├── +not-found.tsx ├── _layout.tsx ├── buy-crypto.tsx └── crypto │ └── [symbol].tsx ├── assets ├── fonts │ └── SpaceMono-Regular.ttf └── images │ ├── adaptive-icon.png │ ├── crypto │ └── index.ts │ ├── favicon.png │ ├── icon.png │ ├── partial-react-logo.png │ ├── react-logo.png │ ├── react-logo@2x.png │ ├── react-logo@3x.png │ └── splash-icon.png ├── babel.config.js ├── components ├── Collapsible.tsx ├── ExternalLink.tsx ├── HapticTab.tsx ├── HelloWave.tsx ├── ParallaxScrollView.tsx ├── ThemedText.tsx ├── ThemedView.tsx ├── __tests__ │ ├── ThemedText-test.tsx │ └── __snapshots__ │ │ └── ThemedText-test.tsx.snap └── ui │ ├── IconSymbol.ios.tsx │ ├── IconSymbol.tsx │ ├── TabBarBackground.ios.tsx │ └── TabBarBackground.tsx ├── constants ├── Colors.ts └── Theme.ts ├── hooks ├── useColorScheme.ts ├── useColorScheme.web.ts └── useThemeColor.ts ├── img ├── 1.png ├── k1.png ├── k2.png ├── k3.png └── k4.png ├── package.json ├── scripts └── reset-project.js ├── tailwind.config.js ├── tsconfig.json └── video └── 1.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/app.json -------------------------------------------------------------------------------- /app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /app/(tabs)/explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/app/(tabs)/explore.tsx -------------------------------------------------------------------------------- /app/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/app/(tabs)/index.tsx -------------------------------------------------------------------------------- /app/(tabs)/learn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/app/(tabs)/learn.tsx -------------------------------------------------------------------------------- /app/(tabs)/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/app/(tabs)/profile.tsx -------------------------------------------------------------------------------- /app/(tabs)/swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/app/(tabs)/swap.tsx -------------------------------------------------------------------------------- /app/(tabs)/wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/app/(tabs)/wallet.tsx -------------------------------------------------------------------------------- /app/+not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/app/+not-found.tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /app/buy-crypto.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/app/buy-crypto.tsx -------------------------------------------------------------------------------- /app/crypto/[symbol].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/app/crypto/[symbol].tsx -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/crypto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/assets/images/crypto/index.ts -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/assets/images/react-logo.png -------------------------------------------------------------------------------- /assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /assets/images/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/assets/images/splash-icon.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/components/Collapsible.tsx -------------------------------------------------------------------------------- /components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/components/ExternalLink.tsx -------------------------------------------------------------------------------- /components/HapticTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/components/HapticTab.tsx -------------------------------------------------------------------------------- /components/HelloWave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/components/HelloWave.tsx -------------------------------------------------------------------------------- /components/ParallaxScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/components/ParallaxScrollView.tsx -------------------------------------------------------------------------------- /components/ThemedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/components/ThemedText.tsx -------------------------------------------------------------------------------- /components/ThemedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/components/ThemedView.tsx -------------------------------------------------------------------------------- /components/__tests__/ThemedText-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/components/__tests__/ThemedText-test.tsx -------------------------------------------------------------------------------- /components/__tests__/__snapshots__/ThemedText-test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/components/__tests__/__snapshots__/ThemedText-test.tsx.snap -------------------------------------------------------------------------------- /components/ui/IconSymbol.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/components/ui/IconSymbol.ios.tsx -------------------------------------------------------------------------------- /components/ui/IconSymbol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/components/ui/IconSymbol.tsx -------------------------------------------------------------------------------- /components/ui/TabBarBackground.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/components/ui/TabBarBackground.ios.tsx -------------------------------------------------------------------------------- /components/ui/TabBarBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/components/ui/TabBarBackground.tsx -------------------------------------------------------------------------------- /constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/constants/Colors.ts -------------------------------------------------------------------------------- /constants/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/constants/Theme.ts -------------------------------------------------------------------------------- /hooks/useColorScheme.ts: -------------------------------------------------------------------------------- 1 | export { useColorScheme } from 'react-native'; 2 | -------------------------------------------------------------------------------- /hooks/useColorScheme.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/hooks/useColorScheme.web.ts -------------------------------------------------------------------------------- /hooks/useThemeColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/hooks/useThemeColor.ts -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/img/1.png -------------------------------------------------------------------------------- /img/k1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/img/k1.png -------------------------------------------------------------------------------- /img/k2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/img/k2.png -------------------------------------------------------------------------------- /img/k3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/img/k3.png -------------------------------------------------------------------------------- /img/k4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/img/k4.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/package.json -------------------------------------------------------------------------------- /scripts/reset-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/scripts/reset-project.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /video/1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TickHaiJun/Dompet-App-React-Native/HEAD/video/1.mp4 --------------------------------------------------------------------------------