├── .gitignore ├── .maestro ├── FavoritePodcast.yaml └── Login.yaml ├── .prettierignore ├── App.tsx ├── README.md ├── app.json ├── app ├── app.tsx ├── components │ ├── AutoImage.tsx │ ├── Button.tsx │ ├── Card.tsx │ ├── EmptyState.tsx │ ├── Header.tsx │ ├── Icon.tsx │ ├── ListItem.tsx │ ├── ListView.tsx │ ├── Screen.tsx │ ├── Text.tsx │ ├── TextField.tsx │ ├── Toggle.tsx │ └── index.ts ├── config │ ├── config.base.ts │ ├── config.dev.ts │ ├── config.prod.ts │ └── index.ts ├── devtools │ ├── ReactotronClient.ts │ ├── ReactotronClient.web.ts │ └── ReactotronConfig.ts ├── i18n │ ├── ar.ts │ ├── en.ts │ ├── fr.ts │ ├── i18n.ts │ ├── index.ts │ ├── ko.ts │ └── translate.ts ├── models │ ├── AuthenticationStore.ts │ ├── Episode.test.ts │ ├── Episode.ts │ ├── EpisodeStore.ts │ ├── RootStore.ts │ ├── helpers │ │ ├── getRootStore.ts │ │ ├── setupRootStore.ts │ │ ├── useStores.ts │ │ └── withSetPropAction.ts │ └── index.ts ├── navigators │ ├── AppNavigator.tsx │ ├── DemoNavigator.tsx │ ├── index.ts │ └── navigationUtilities.ts ├── screens │ ├── DemoCommunityScreen.tsx │ ├── DemoDebugScreen.tsx │ ├── DemoPodcastListScreen.tsx │ ├── DemoShowroomScreen │ │ ├── DemoDivider.tsx │ │ ├── DemoShowroomScreen.tsx │ │ ├── DemoUseCase.tsx │ │ ├── DrawerIconButton.tsx │ │ └── demos │ │ │ ├── DemoAutoImage.tsx │ │ │ ├── DemoButton.tsx │ │ │ ├── DemoCard.tsx │ │ │ ├── DemoEmptyState.tsx │ │ │ ├── DemoHeader.tsx │ │ │ ├── DemoIcon.tsx │ │ │ ├── DemoListItem.tsx │ │ │ ├── DemoText.tsx │ │ │ ├── DemoTextField.tsx │ │ │ ├── DemoToggle.tsx │ │ │ └── index.ts │ ├── ErrorScreen │ │ ├── ErrorBoundary.tsx │ │ └── ErrorDetails.tsx │ ├── LoginScreen.tsx │ ├── WelcomeScreen.tsx │ └── index.ts ├── services │ └── api │ │ ├── api.ts │ │ ├── api.types.ts │ │ ├── apiProblem.test.ts │ │ ├── apiProblem.ts │ │ └── index.ts ├── theme │ ├── colors.ts │ ├── index.ts │ ├── spacing.ts │ ├── timing.ts │ └── typography.ts └── utils │ ├── crashReporting.ts │ ├── delay.ts │ ├── formatDate.ts │ ├── ignoreWarnings.ts │ ├── openLinkInBrowser.ts │ ├── storage │ ├── index.ts │ ├── storage.test.ts │ └── storage.ts │ ├── useHeader.tsx │ ├── useIsMounted.ts │ └── useSafeAreaInsetsStyle.ts ├── assets ├── icons │ ├── back.png │ ├── back@2x.png │ ├── back@3x.png │ ├── bell.png │ ├── bell@2x.png │ ├── bell@3x.png │ ├── caretLeft.png │ ├── caretLeft@2x.png │ ├── caretLeft@3x.png │ ├── caretRight.png │ ├── caretRight@2x.png │ ├── caretRight@3x.png │ ├── check.png │ ├── check@2x.png │ ├── check@3x.png │ ├── demo │ │ ├── clap.png │ │ ├── clap@2x.png │ │ ├── clap@3x.png │ │ ├── community.png │ │ ├── community@2x.png │ │ ├── community@3x.png │ │ ├── components.png │ │ ├── components@2x.png │ │ ├── components@3x.png │ │ ├── debug.png │ │ ├── debug@2x.png │ │ ├── debug@3x.png │ │ ├── github.png │ │ ├── github@2x.png │ │ ├── github@3x.png │ │ ├── heart.png │ │ ├── heart@2x.png │ │ ├── heart@3x.png │ │ ├── pin.png │ │ ├── pin@2x.png │ │ ├── pin@3x.png │ │ ├── podcast.png │ │ ├── podcast@2x.png │ │ ├── podcast@3x.png │ │ ├── slack.png │ │ ├── slack@2x.png │ │ └── slack@3x.png │ ├── hidden.png │ ├── hidden@2x.png │ ├── hidden@3x.png │ ├── ladybug.png │ ├── ladybug@2x.png │ ├── ladybug@3x.png │ ├── lock.png │ ├── lock@2x.png │ ├── lock@3x.png │ ├── menu.png │ ├── menu@2x.png │ ├── menu@3x.png │ ├── more.png │ ├── more@2x.png │ ├── more@3x.png │ ├── settings.png │ ├── settings@2x.png │ ├── settings@3x.png │ ├── view.png │ ├── view@2x.png │ ├── view@3x.png │ ├── x.png │ ├── x@2x.png │ └── x@3x.png └── images │ ├── app-icon-all.png │ ├── app-icon-android-adaptive-background.png │ ├── app-icon-android-adaptive-foreground.png │ ├── app-icon-android-legacy.png │ ├── app-icon-ios.png │ ├── app-icon-web-favicon.png │ ├── demo │ ├── cr-logo.png │ ├── cr-logo@2x.png │ ├── cr-logo@3x.png │ ├── rnl-logo.png │ ├── rnl-logo@2x.png │ ├── rnl-logo@3x.png │ ├── rnn-logo.png │ ├── rnn-logo@2x.png │ ├── rnn-logo@3x.png │ ├── rnr-image-1.png │ ├── rnr-image-1@2x.png │ ├── rnr-image-1@3x.png │ ├── rnr-image-2.png │ ├── rnr-image-2@2x.png │ ├── rnr-image-2@3x.png │ ├── rnr-image-3.png │ ├── rnr-image-3@2x.png │ ├── rnr-image-3@3x.png │ ├── rnr-logo.png │ ├── rnr-logo@2x.png │ └── rnr-logo@3x.png │ ├── ignite-tvos-1280x768.png │ ├── ignite-tvos-1920x720.png │ ├── ignite-tvos-2320x720.png │ ├── ignite-tvos-3840x1440.png │ ├── ignite-tvos-400x240.png │ ├── ignite-tvos-4640x1440.png │ ├── ignite-tvos-800x480.png │ ├── logo.png │ ├── logo@2x.png │ ├── logo@3x.png │ ├── sad-face.png │ ├── sad-face@2x.png │ ├── sad-face@3x.png │ ├── splash-logo-all.png │ ├── splash-logo-android-universal.png │ ├── splash-logo-ios-mobile.png │ ├── splash-logo-ios-tablet.png │ ├── splash-logo-web.png │ ├── tv_banner.png │ ├── welcome-face.png │ ├── welcome-face@2x.png │ └── welcome-face@3x.png ├── babel.config.js ├── eas.json ├── ignite └── templates │ ├── app-icon │ ├── android-adaptive-background.png │ ├── android-adaptive-foreground.png │ ├── android-legacy.png │ └── ios-universal.png │ ├── component │ └── NAME.tsx.ejs │ ├── model │ ├── NAME.test.ts.ejs │ └── NAME.ts.ejs │ ├── navigator │ └── NAMENavigator.tsx.ejs │ ├── screen │ └── NAMEScreen.tsx.ejs │ └── splash-screen │ └── logo.png ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js ├── scripts └── brandassetsextract.js ├── test ├── i18n.test.ts ├── mockFile.ts ├── setup.ts └── test-tsconfig.json ├── tsconfig.json ├── types └── lib.es5.d.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/.gitignore -------------------------------------------------------------------------------- /.maestro/FavoritePodcast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/.maestro/FavoritePodcast.yaml -------------------------------------------------------------------------------- /.maestro/Login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/.maestro/Login.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/.prettierignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app.json -------------------------------------------------------------------------------- /app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/app.tsx -------------------------------------------------------------------------------- /app/components/AutoImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/components/AutoImage.tsx -------------------------------------------------------------------------------- /app/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/components/Button.tsx -------------------------------------------------------------------------------- /app/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/components/Card.tsx -------------------------------------------------------------------------------- /app/components/EmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/components/EmptyState.tsx -------------------------------------------------------------------------------- /app/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/components/Header.tsx -------------------------------------------------------------------------------- /app/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/components/Icon.tsx -------------------------------------------------------------------------------- /app/components/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/components/ListItem.tsx -------------------------------------------------------------------------------- /app/components/ListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/components/ListView.tsx -------------------------------------------------------------------------------- /app/components/Screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/components/Screen.tsx -------------------------------------------------------------------------------- /app/components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/components/Text.tsx -------------------------------------------------------------------------------- /app/components/TextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/components/TextField.tsx -------------------------------------------------------------------------------- /app/components/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/components/Toggle.tsx -------------------------------------------------------------------------------- /app/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/components/index.ts -------------------------------------------------------------------------------- /app/config/config.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/config/config.base.ts -------------------------------------------------------------------------------- /app/config/config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/config/config.dev.ts -------------------------------------------------------------------------------- /app/config/config.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/config/config.prod.ts -------------------------------------------------------------------------------- /app/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/config/index.ts -------------------------------------------------------------------------------- /app/devtools/ReactotronClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/devtools/ReactotronClient.ts -------------------------------------------------------------------------------- /app/devtools/ReactotronClient.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/devtools/ReactotronClient.web.ts -------------------------------------------------------------------------------- /app/devtools/ReactotronConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/devtools/ReactotronConfig.ts -------------------------------------------------------------------------------- /app/i18n/ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/i18n/ar.ts -------------------------------------------------------------------------------- /app/i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/i18n/en.ts -------------------------------------------------------------------------------- /app/i18n/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/i18n/fr.ts -------------------------------------------------------------------------------- /app/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/i18n/i18n.ts -------------------------------------------------------------------------------- /app/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/i18n/index.ts -------------------------------------------------------------------------------- /app/i18n/ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/i18n/ko.ts -------------------------------------------------------------------------------- /app/i18n/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/i18n/translate.ts -------------------------------------------------------------------------------- /app/models/AuthenticationStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/models/AuthenticationStore.ts -------------------------------------------------------------------------------- /app/models/Episode.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/models/Episode.test.ts -------------------------------------------------------------------------------- /app/models/Episode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/models/Episode.ts -------------------------------------------------------------------------------- /app/models/EpisodeStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/models/EpisodeStore.ts -------------------------------------------------------------------------------- /app/models/RootStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/models/RootStore.ts -------------------------------------------------------------------------------- /app/models/helpers/getRootStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/models/helpers/getRootStore.ts -------------------------------------------------------------------------------- /app/models/helpers/setupRootStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/models/helpers/setupRootStore.ts -------------------------------------------------------------------------------- /app/models/helpers/useStores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/models/helpers/useStores.ts -------------------------------------------------------------------------------- /app/models/helpers/withSetPropAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/models/helpers/withSetPropAction.ts -------------------------------------------------------------------------------- /app/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/models/index.ts -------------------------------------------------------------------------------- /app/navigators/AppNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/navigators/AppNavigator.tsx -------------------------------------------------------------------------------- /app/navigators/DemoNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/navigators/DemoNavigator.tsx -------------------------------------------------------------------------------- /app/navigators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/navigators/index.ts -------------------------------------------------------------------------------- /app/navigators/navigationUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/navigators/navigationUtilities.ts -------------------------------------------------------------------------------- /app/screens/DemoCommunityScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoCommunityScreen.tsx -------------------------------------------------------------------------------- /app/screens/DemoDebugScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoDebugScreen.tsx -------------------------------------------------------------------------------- /app/screens/DemoPodcastListScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoPodcastListScreen.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/DemoDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/DemoDivider.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/DemoShowroomScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/DemoShowroomScreen.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/DemoUseCase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/DemoUseCase.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/DrawerIconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/DrawerIconButton.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/demos/DemoAutoImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/demos/DemoAutoImage.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/demos/DemoButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/demos/DemoButton.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/demos/DemoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/demos/DemoCard.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/demos/DemoEmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/demos/DemoEmptyState.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/demos/DemoHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/demos/DemoHeader.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/demos/DemoIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/demos/DemoIcon.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/demos/DemoListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/demos/DemoListItem.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/demos/DemoText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/demos/DemoText.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/demos/DemoTextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/demos/DemoTextField.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/demos/DemoToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/demos/DemoToggle.tsx -------------------------------------------------------------------------------- /app/screens/DemoShowroomScreen/demos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/DemoShowroomScreen/demos/index.ts -------------------------------------------------------------------------------- /app/screens/ErrorScreen/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/ErrorScreen/ErrorBoundary.tsx -------------------------------------------------------------------------------- /app/screens/ErrorScreen/ErrorDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/ErrorScreen/ErrorDetails.tsx -------------------------------------------------------------------------------- /app/screens/LoginScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/LoginScreen.tsx -------------------------------------------------------------------------------- /app/screens/WelcomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/WelcomeScreen.tsx -------------------------------------------------------------------------------- /app/screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/screens/index.ts -------------------------------------------------------------------------------- /app/services/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/services/api/api.ts -------------------------------------------------------------------------------- /app/services/api/api.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/services/api/api.types.ts -------------------------------------------------------------------------------- /app/services/api/apiProblem.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/services/api/apiProblem.test.ts -------------------------------------------------------------------------------- /app/services/api/apiProblem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/services/api/apiProblem.ts -------------------------------------------------------------------------------- /app/services/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/services/api/index.ts -------------------------------------------------------------------------------- /app/theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/theme/colors.ts -------------------------------------------------------------------------------- /app/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/theme/index.ts -------------------------------------------------------------------------------- /app/theme/spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/theme/spacing.ts -------------------------------------------------------------------------------- /app/theme/timing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/theme/timing.ts -------------------------------------------------------------------------------- /app/theme/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/theme/typography.ts -------------------------------------------------------------------------------- /app/utils/crashReporting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/utils/crashReporting.ts -------------------------------------------------------------------------------- /app/utils/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/utils/delay.ts -------------------------------------------------------------------------------- /app/utils/formatDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/utils/formatDate.ts -------------------------------------------------------------------------------- /app/utils/ignoreWarnings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/utils/ignoreWarnings.ts -------------------------------------------------------------------------------- /app/utils/openLinkInBrowser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/utils/openLinkInBrowser.ts -------------------------------------------------------------------------------- /app/utils/storage/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./storage" 2 | -------------------------------------------------------------------------------- /app/utils/storage/storage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/utils/storage/storage.test.ts -------------------------------------------------------------------------------- /app/utils/storage/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/utils/storage/storage.ts -------------------------------------------------------------------------------- /app/utils/useHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/utils/useHeader.tsx -------------------------------------------------------------------------------- /app/utils/useIsMounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/utils/useIsMounted.ts -------------------------------------------------------------------------------- /app/utils/useSafeAreaInsetsStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/app/utils/useSafeAreaInsetsStyle.ts -------------------------------------------------------------------------------- /assets/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/back.png -------------------------------------------------------------------------------- /assets/icons/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/back@2x.png -------------------------------------------------------------------------------- /assets/icons/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/back@3x.png -------------------------------------------------------------------------------- /assets/icons/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/bell.png -------------------------------------------------------------------------------- /assets/icons/bell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/bell@2x.png -------------------------------------------------------------------------------- /assets/icons/bell@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/bell@3x.png -------------------------------------------------------------------------------- /assets/icons/caretLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/caretLeft.png -------------------------------------------------------------------------------- /assets/icons/caretLeft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/caretLeft@2x.png -------------------------------------------------------------------------------- /assets/icons/caretLeft@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/caretLeft@3x.png -------------------------------------------------------------------------------- /assets/icons/caretRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/caretRight.png -------------------------------------------------------------------------------- /assets/icons/caretRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/caretRight@2x.png -------------------------------------------------------------------------------- /assets/icons/caretRight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/caretRight@3x.png -------------------------------------------------------------------------------- /assets/icons/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/check.png -------------------------------------------------------------------------------- /assets/icons/check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/check@2x.png -------------------------------------------------------------------------------- /assets/icons/check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/check@3x.png -------------------------------------------------------------------------------- /assets/icons/demo/clap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/clap.png -------------------------------------------------------------------------------- /assets/icons/demo/clap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/clap@2x.png -------------------------------------------------------------------------------- /assets/icons/demo/clap@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/clap@3x.png -------------------------------------------------------------------------------- /assets/icons/demo/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/community.png -------------------------------------------------------------------------------- /assets/icons/demo/community@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/community@2x.png -------------------------------------------------------------------------------- /assets/icons/demo/community@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/community@3x.png -------------------------------------------------------------------------------- /assets/icons/demo/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/components.png -------------------------------------------------------------------------------- /assets/icons/demo/components@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/components@2x.png -------------------------------------------------------------------------------- /assets/icons/demo/components@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/components@3x.png -------------------------------------------------------------------------------- /assets/icons/demo/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/debug.png -------------------------------------------------------------------------------- /assets/icons/demo/debug@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/debug@2x.png -------------------------------------------------------------------------------- /assets/icons/demo/debug@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/debug@3x.png -------------------------------------------------------------------------------- /assets/icons/demo/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/github.png -------------------------------------------------------------------------------- /assets/icons/demo/github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/github@2x.png -------------------------------------------------------------------------------- /assets/icons/demo/github@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/github@3x.png -------------------------------------------------------------------------------- /assets/icons/demo/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/heart.png -------------------------------------------------------------------------------- /assets/icons/demo/heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/heart@2x.png -------------------------------------------------------------------------------- /assets/icons/demo/heart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/heart@3x.png -------------------------------------------------------------------------------- /assets/icons/demo/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/pin.png -------------------------------------------------------------------------------- /assets/icons/demo/pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/pin@2x.png -------------------------------------------------------------------------------- /assets/icons/demo/pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/pin@3x.png -------------------------------------------------------------------------------- /assets/icons/demo/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/podcast.png -------------------------------------------------------------------------------- /assets/icons/demo/podcast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/podcast@2x.png -------------------------------------------------------------------------------- /assets/icons/demo/podcast@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/podcast@3x.png -------------------------------------------------------------------------------- /assets/icons/demo/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/slack.png -------------------------------------------------------------------------------- /assets/icons/demo/slack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/slack@2x.png -------------------------------------------------------------------------------- /assets/icons/demo/slack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/demo/slack@3x.png -------------------------------------------------------------------------------- /assets/icons/hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/hidden.png -------------------------------------------------------------------------------- /assets/icons/hidden@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/hidden@2x.png -------------------------------------------------------------------------------- /assets/icons/hidden@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/hidden@3x.png -------------------------------------------------------------------------------- /assets/icons/ladybug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/ladybug.png -------------------------------------------------------------------------------- /assets/icons/ladybug@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/ladybug@2x.png -------------------------------------------------------------------------------- /assets/icons/ladybug@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/ladybug@3x.png -------------------------------------------------------------------------------- /assets/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/lock.png -------------------------------------------------------------------------------- /assets/icons/lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/lock@2x.png -------------------------------------------------------------------------------- /assets/icons/lock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/lock@3x.png -------------------------------------------------------------------------------- /assets/icons/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/menu.png -------------------------------------------------------------------------------- /assets/icons/menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/menu@2x.png -------------------------------------------------------------------------------- /assets/icons/menu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/menu@3x.png -------------------------------------------------------------------------------- /assets/icons/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/more.png -------------------------------------------------------------------------------- /assets/icons/more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/more@2x.png -------------------------------------------------------------------------------- /assets/icons/more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/more@3x.png -------------------------------------------------------------------------------- /assets/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/settings.png -------------------------------------------------------------------------------- /assets/icons/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/settings@2x.png -------------------------------------------------------------------------------- /assets/icons/settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/settings@3x.png -------------------------------------------------------------------------------- /assets/icons/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/view.png -------------------------------------------------------------------------------- /assets/icons/view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/view@2x.png -------------------------------------------------------------------------------- /assets/icons/view@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/view@3x.png -------------------------------------------------------------------------------- /assets/icons/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/x.png -------------------------------------------------------------------------------- /assets/icons/x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/x@2x.png -------------------------------------------------------------------------------- /assets/icons/x@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/icons/x@3x.png -------------------------------------------------------------------------------- /assets/images/app-icon-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/app-icon-all.png -------------------------------------------------------------------------------- /assets/images/app-icon-android-adaptive-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/app-icon-android-adaptive-background.png -------------------------------------------------------------------------------- /assets/images/app-icon-android-adaptive-foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/app-icon-android-adaptive-foreground.png -------------------------------------------------------------------------------- /assets/images/app-icon-android-legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/app-icon-android-legacy.png -------------------------------------------------------------------------------- /assets/images/app-icon-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/app-icon-ios.png -------------------------------------------------------------------------------- /assets/images/app-icon-web-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/app-icon-web-favicon.png -------------------------------------------------------------------------------- /assets/images/demo/cr-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/cr-logo.png -------------------------------------------------------------------------------- /assets/images/demo/cr-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/cr-logo@2x.png -------------------------------------------------------------------------------- /assets/images/demo/cr-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/cr-logo@3x.png -------------------------------------------------------------------------------- /assets/images/demo/rnl-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnl-logo.png -------------------------------------------------------------------------------- /assets/images/demo/rnl-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnl-logo@2x.png -------------------------------------------------------------------------------- /assets/images/demo/rnl-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnl-logo@3x.png -------------------------------------------------------------------------------- /assets/images/demo/rnn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnn-logo.png -------------------------------------------------------------------------------- /assets/images/demo/rnn-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnn-logo@2x.png -------------------------------------------------------------------------------- /assets/images/demo/rnn-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnn-logo@3x.png -------------------------------------------------------------------------------- /assets/images/demo/rnr-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnr-image-1.png -------------------------------------------------------------------------------- /assets/images/demo/rnr-image-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnr-image-1@2x.png -------------------------------------------------------------------------------- /assets/images/demo/rnr-image-1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnr-image-1@3x.png -------------------------------------------------------------------------------- /assets/images/demo/rnr-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnr-image-2.png -------------------------------------------------------------------------------- /assets/images/demo/rnr-image-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnr-image-2@2x.png -------------------------------------------------------------------------------- /assets/images/demo/rnr-image-2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnr-image-2@3x.png -------------------------------------------------------------------------------- /assets/images/demo/rnr-image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnr-image-3.png -------------------------------------------------------------------------------- /assets/images/demo/rnr-image-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnr-image-3@2x.png -------------------------------------------------------------------------------- /assets/images/demo/rnr-image-3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnr-image-3@3x.png -------------------------------------------------------------------------------- /assets/images/demo/rnr-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnr-logo.png -------------------------------------------------------------------------------- /assets/images/demo/rnr-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnr-logo@2x.png -------------------------------------------------------------------------------- /assets/images/demo/rnr-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/demo/rnr-logo@3x.png -------------------------------------------------------------------------------- /assets/images/ignite-tvos-1280x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/ignite-tvos-1280x768.png -------------------------------------------------------------------------------- /assets/images/ignite-tvos-1920x720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/ignite-tvos-1920x720.png -------------------------------------------------------------------------------- /assets/images/ignite-tvos-2320x720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/ignite-tvos-2320x720.png -------------------------------------------------------------------------------- /assets/images/ignite-tvos-3840x1440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/ignite-tvos-3840x1440.png -------------------------------------------------------------------------------- /assets/images/ignite-tvos-400x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/ignite-tvos-400x240.png -------------------------------------------------------------------------------- /assets/images/ignite-tvos-4640x1440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/ignite-tvos-4640x1440.png -------------------------------------------------------------------------------- /assets/images/ignite-tvos-800x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/ignite-tvos-800x480.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/logo@2x.png -------------------------------------------------------------------------------- /assets/images/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/logo@3x.png -------------------------------------------------------------------------------- /assets/images/sad-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/sad-face.png -------------------------------------------------------------------------------- /assets/images/sad-face@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/sad-face@2x.png -------------------------------------------------------------------------------- /assets/images/sad-face@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/sad-face@3x.png -------------------------------------------------------------------------------- /assets/images/splash-logo-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/splash-logo-all.png -------------------------------------------------------------------------------- /assets/images/splash-logo-android-universal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/splash-logo-android-universal.png -------------------------------------------------------------------------------- /assets/images/splash-logo-ios-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/splash-logo-ios-mobile.png -------------------------------------------------------------------------------- /assets/images/splash-logo-ios-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/splash-logo-ios-tablet.png -------------------------------------------------------------------------------- /assets/images/splash-logo-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/splash-logo-web.png -------------------------------------------------------------------------------- /assets/images/tv_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/tv_banner.png -------------------------------------------------------------------------------- /assets/images/welcome-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/welcome-face.png -------------------------------------------------------------------------------- /assets/images/welcome-face@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/welcome-face@2x.png -------------------------------------------------------------------------------- /assets/images/welcome-face@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/assets/images/welcome-face@3x.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/babel.config.js -------------------------------------------------------------------------------- /eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/eas.json -------------------------------------------------------------------------------- /ignite/templates/app-icon/android-adaptive-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/ignite/templates/app-icon/android-adaptive-background.png -------------------------------------------------------------------------------- /ignite/templates/app-icon/android-adaptive-foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/ignite/templates/app-icon/android-adaptive-foreground.png -------------------------------------------------------------------------------- /ignite/templates/app-icon/android-legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/ignite/templates/app-icon/android-legacy.png -------------------------------------------------------------------------------- /ignite/templates/app-icon/ios-universal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/ignite/templates/app-icon/ios-universal.png -------------------------------------------------------------------------------- /ignite/templates/component/NAME.tsx.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/ignite/templates/component/NAME.tsx.ejs -------------------------------------------------------------------------------- /ignite/templates/model/NAME.test.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/ignite/templates/model/NAME.test.ts.ejs -------------------------------------------------------------------------------- /ignite/templates/model/NAME.ts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/ignite/templates/model/NAME.ts.ejs -------------------------------------------------------------------------------- /ignite/templates/navigator/NAMENavigator.tsx.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/ignite/templates/navigator/NAMENavigator.tsx.ejs -------------------------------------------------------------------------------- /ignite/templates/screen/NAMEScreen.tsx.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/ignite/templates/screen/NAMEScreen.tsx.ejs -------------------------------------------------------------------------------- /ignite/templates/splash-screen/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/ignite/templates/splash-screen/logo.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/jest.config.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/react-native.config.js -------------------------------------------------------------------------------- /scripts/brandassetsextract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/scripts/brandassetsextract.js -------------------------------------------------------------------------------- /test/i18n.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/test/i18n.test.ts -------------------------------------------------------------------------------- /test/mockFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/test/mockFile.ts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/test/setup.ts -------------------------------------------------------------------------------- /test/test-tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/test/test-tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/lib.es5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/types/lib.es5.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/IgniteTV/HEAD/yarn.lock --------------------------------------------------------------------------------