├── .expo-shared └── assets.json ├── .gitignore ├── App.tsx ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── demo.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── index.d.ts ├── package.json ├── src ├── assets │ └── images │ │ └── card-back.png ├── components │ ├── buttons │ │ ├── Button.tsx │ │ └── index.ts │ └── cards │ │ ├── GameCard.tsx │ │ ├── Stats.tsx │ │ └── index.tsx ├── constants │ ├── Theme.ts │ ├── emojis.ts │ └── index.ts ├── hooks │ └── useMatchGame.ts ├── index.tsx ├── screens │ └── MatchThePairs.tsx └── utils │ └── shareGame.ts ├── tsconfig.json └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/assets/demo.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.png"; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/images/card-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/src/assets/images/card-back.png -------------------------------------------------------------------------------- /src/components/buttons/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/src/components/buttons/Button.tsx -------------------------------------------------------------------------------- /src/components/buttons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/src/components/buttons/index.ts -------------------------------------------------------------------------------- /src/components/cards/GameCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/src/components/cards/GameCard.tsx -------------------------------------------------------------------------------- /src/components/cards/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/src/components/cards/Stats.tsx -------------------------------------------------------------------------------- /src/components/cards/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/src/components/cards/index.tsx -------------------------------------------------------------------------------- /src/constants/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/src/constants/Theme.ts -------------------------------------------------------------------------------- /src/constants/emojis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/src/constants/emojis.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/hooks/useMatchGame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/src/hooks/useMatchGame.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/screens/MatchThePairs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/src/screens/MatchThePairs.tsx -------------------------------------------------------------------------------- /src/utils/shareGame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/src/utils/shareGame.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactNativeSchool/match-the-pairs-react-native/HEAD/yarn.lock --------------------------------------------------------------------------------