├── .github └── workflows │ ├── lint.yml │ ├── npm-publish-prerelease.yml │ └── npm-publish.yml ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── package.json ├── template.config.js └── template ├── App.tsx ├── Gemfile ├── README.md ├── __tests__ └── App.test.tsx ├── _bundle └── config ├── _eslintrc.js ├── _gitignore ├── _prettierrc.js ├── _watchmanconfig ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── helloworld │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── res │ │ ├── drawable │ │ ├── rn_edit_text_material.xml │ │ └── tv_banner.png │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── HelloWorld-tvOS │ └── Info.plist ├── HelloWorld-tvOSTests │ └── Info.plist ├── HelloWorld.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── HelloWorld-tvOS.xcscheme │ │ └── HelloWorld.xcscheme ├── HelloWorld │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── HelloWorldTests │ ├── HelloWorldTests.m │ └── Info.plist ├── Podfile └── _xcode.env ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js └── tsconfig.json /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish-prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/.github/workflows/npm-publish-prerelease.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @emin93 @radko93 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/package.json -------------------------------------------------------------------------------- /template.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template.config.js -------------------------------------------------------------------------------- /template/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/App.tsx -------------------------------------------------------------------------------- /template/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/Gemfile -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/README.md -------------------------------------------------------------------------------- /template/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/__tests__/App.test.tsx -------------------------------------------------------------------------------- /template/_bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/_bundle/config -------------------------------------------------------------------------------- /template/_eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /template/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/_gitignore -------------------------------------------------------------------------------- /template/_prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/_prettierrc.js -------------------------------------------------------------------------------- /template/_watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /template/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/build.gradle -------------------------------------------------------------------------------- /template/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/debug.keystore -------------------------------------------------------------------------------- /template/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /template/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /template/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /template/android/app/src/main/java/com/helloworld/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/java/com/helloworld/MainActivity.kt -------------------------------------------------------------------------------- /template/android/app/src/main/java/com/helloworld/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/java/com/helloworld/MainApplication.kt -------------------------------------------------------------------------------- /template/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /template/android/app/src/main/res/drawable/tv_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/drawable/tv_banner.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /template/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /template/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/build.gradle -------------------------------------------------------------------------------- /template/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/gradle.properties -------------------------------------------------------------------------------- /template/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /template/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /template/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/gradlew -------------------------------------------------------------------------------- /template/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/gradlew.bat -------------------------------------------------------------------------------- /template/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/android/settings.gradle -------------------------------------------------------------------------------- /template/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/app.json -------------------------------------------------------------------------------- /template/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/babel.config.js -------------------------------------------------------------------------------- /template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/index.js -------------------------------------------------------------------------------- /template/ios/HelloWorld-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorld-tvOS/Info.plist -------------------------------------------------------------------------------- /template/ios/HelloWorld-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorld-tvOSTests/Info.plist -------------------------------------------------------------------------------- /template/ios/HelloWorld.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorld.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /template/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld-tvOS.xcscheme -------------------------------------------------------------------------------- /template/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld.xcscheme -------------------------------------------------------------------------------- /template/ios/HelloWorld/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorld/AppDelegate.h -------------------------------------------------------------------------------- /template/ios/HelloWorld/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorld/AppDelegate.mm -------------------------------------------------------------------------------- /template/ios/HelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /template/ios/HelloWorld/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorld/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /template/ios/HelloWorld/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorld/Info.plist -------------------------------------------------------------------------------- /template/ios/HelloWorld/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorld/LaunchScreen.storyboard -------------------------------------------------------------------------------- /template/ios/HelloWorld/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorld/main.m -------------------------------------------------------------------------------- /template/ios/HelloWorldTests/HelloWorldTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorldTests/HelloWorldTests.m -------------------------------------------------------------------------------- /template/ios/HelloWorldTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/HelloWorldTests/Info.plist -------------------------------------------------------------------------------- /template/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/Podfile -------------------------------------------------------------------------------- /template/ios/_xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/ios/_xcode.env -------------------------------------------------------------------------------- /template/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /template/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/metro.config.js -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/package.json -------------------------------------------------------------------------------- /template/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/react-native.config.js -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-tvos/react-native-template-typescript-tv/HEAD/template/tsconfig.json --------------------------------------------------------------------------------