├── .expo-shared └── assets.json ├── .gitignore ├── App.tsx ├── README.md ├── RESOURCES.md ├── app.json ├── assets ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── src ├── @types │ └── index.d.ts ├── components │ ├── CategoryList │ │ ├── data.ts │ │ ├── index.tsx │ │ └── styles.ts │ ├── ChannelList │ │ ├── index.tsx │ │ └── styles.ts │ ├── Header │ │ ├── index.tsx │ │ └── styles.ts │ ├── Heading │ │ ├── index.tsx │ │ └── styles.ts │ ├── StreamList │ │ ├── index.tsx │ │ └── styles.ts │ └── Title │ │ ├── index.tsx │ │ └── styles.ts ├── images │ ├── category_apex.jpg │ ├── category_csgo.jpg │ ├── category_fallguys.jpg │ ├── category_fortnite.jpg │ ├── category_lol.jpg │ ├── category_valorant.jpg │ └── stream_thumbnail.jpg ├── pages │ ├── ComingSoon │ │ ├── index.tsx │ │ └── styles.ts │ └── Following │ │ ├── index.tsx │ │ └── styles.ts ├── routes.tsx └── styles │ └── colors.ts ├── tsconfig.json └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/README.md -------------------------------------------------------------------------------- /RESOURCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/RESOURCES.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/app.json -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/package.json -------------------------------------------------------------------------------- /src/@types/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.jpg'; 2 | -------------------------------------------------------------------------------- /src/components/CategoryList/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/components/CategoryList/data.ts -------------------------------------------------------------------------------- /src/components/CategoryList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/components/CategoryList/index.tsx -------------------------------------------------------------------------------- /src/components/CategoryList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/components/CategoryList/styles.ts -------------------------------------------------------------------------------- /src/components/ChannelList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/components/ChannelList/index.tsx -------------------------------------------------------------------------------- /src/components/ChannelList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/components/ChannelList/styles.ts -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Header/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/components/Header/styles.ts -------------------------------------------------------------------------------- /src/components/Heading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/components/Heading/index.tsx -------------------------------------------------------------------------------- /src/components/Heading/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/components/Heading/styles.ts -------------------------------------------------------------------------------- /src/components/StreamList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/components/StreamList/index.tsx -------------------------------------------------------------------------------- /src/components/StreamList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/components/StreamList/styles.ts -------------------------------------------------------------------------------- /src/components/Title/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/components/Title/index.tsx -------------------------------------------------------------------------------- /src/components/Title/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/components/Title/styles.ts -------------------------------------------------------------------------------- /src/images/category_apex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/images/category_apex.jpg -------------------------------------------------------------------------------- /src/images/category_csgo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/images/category_csgo.jpg -------------------------------------------------------------------------------- /src/images/category_fallguys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/images/category_fallguys.jpg -------------------------------------------------------------------------------- /src/images/category_fortnite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/images/category_fortnite.jpg -------------------------------------------------------------------------------- /src/images/category_lol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/images/category_lol.jpg -------------------------------------------------------------------------------- /src/images/category_valorant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/images/category_valorant.jpg -------------------------------------------------------------------------------- /src/images/stream_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/images/stream_thumbnail.jpg -------------------------------------------------------------------------------- /src/pages/ComingSoon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/pages/ComingSoon/index.tsx -------------------------------------------------------------------------------- /src/pages/ComingSoon/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/pages/ComingSoon/styles.ts -------------------------------------------------------------------------------- /src/pages/Following/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/pages/Following/index.tsx -------------------------------------------------------------------------------- /src/pages/Following/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/pages/Following/styles.ts -------------------------------------------------------------------------------- /src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/routes.tsx -------------------------------------------------------------------------------- /src/styles/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/src/styles/colors.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-clone-twitch-app/HEAD/yarn.lock --------------------------------------------------------------------------------