├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── setup │ │ └── action.yml ├── scripts │ └── validate.js └── workflows │ ├── check-docs-build.yml │ ├── ci.yml │ ├── deploy-docs.yml │ ├── stale.yml │ └── validate-issue.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── docs ├── .gitignore ├── README.md ├── docs │ ├── api │ │ ├── events.md │ │ ├── methods.md │ │ ├── properties.md │ │ └── styles.md │ ├── installation.md │ └── intro.md ├── docusaurus.config.ts ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ ├── pages │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── markdown-page.md │ └── theme │ │ ├── TOC │ │ ├── index.tsx │ │ └── styles.module.css │ │ └── components │ │ └── PremiumSupport │ │ ├── PremiumSupport.style.css │ │ └── PremiumSupport.tsx ├── static │ ├── .nojekyll │ └── img │ │ ├── banners │ │ ├── twg-dark.png │ │ └── twg-light.png │ │ ├── customization.svg │ │ ├── easy-to-use.svg │ │ ├── favicon.png │ │ ├── logo.svg │ │ ├── og-image.png │ │ └── rely-on-rnv.svg └── tsconfig.json ├── example ├── App.js ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── videoplayer │ │ │ │ └── example │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-mdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable │ │ │ ├── rn_edit_text_material.xml │ │ │ └── splashscreen.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── colors.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── react-settings-plugin │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── expo │ │ │ └── plugins │ │ │ └── ReactSettingsPlugin.kt │ └── settings.gradle ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── ios │ ├── .gitignore │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── Podfile.properties.json │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── example.xcscheme │ ├── example.xcworkspace │ │ └── contents.xcworkspacedata │ └── example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── App-Icon-1024x1024@1x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── SplashScreen.imageset │ │ │ ├── Contents.json │ │ │ └── image.png │ │ └── SplashScreenBackground.imageset │ │ │ ├── Contents.json │ │ │ └── image.png │ │ ├── Info.plist │ │ ├── PrivacyInfo.xcprivacy │ │ ├── SplashScreen.storyboard │ │ ├── Supporting │ │ └── Expo.plist │ │ ├── example-Bridging-Header.h │ │ ├── example.entitlements │ │ ├── main.m │ │ └── noop-file.swift ├── metro.config.js ├── package.json ├── src │ └── App.tsx └── tsconfig.json ├── lefthook.yml ├── package.json ├── src ├── Thumbnail.tsx ├── Video.tsx ├── __tests__ │ └── index.test.tsx ├── controls │ ├── Controls.tsx │ ├── ControlsAnimatedWrapper.tsx │ ├── Duration.tsx │ ├── Fullscreen.tsx │ ├── Mute.tsx │ ├── PlayButton.tsx │ └── Seekbar.tsx ├── img │ ├── fullscreen.png │ ├── fullscreen@2x.png │ ├── fullscreen@3x.png │ ├── pause.png │ ├── pause@2x.png │ ├── pause@3x.png │ ├── play.png │ ├── play@2x.png │ ├── play@3x.png │ ├── volume_off.png │ ├── volume_off@2x.png │ ├── volume_off@3x.png │ ├── volume_on.png │ ├── volume_on@2x.png │ └── volume_on@3x.png └── index.tsx ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: TheWidlarzGroup 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/scripts/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.github/scripts/validate.js -------------------------------------------------------------------------------- /.github/workflows/check-docs-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.github/workflows/check-docs-build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/validate-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.github/workflows/validate-issue.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/docs/api/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/docs/api/events.md -------------------------------------------------------------------------------- /docs/docs/api/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/docs/api/methods.md -------------------------------------------------------------------------------- /docs/docs/api/properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/docs/api/properties.md -------------------------------------------------------------------------------- /docs/docs/api/styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/docs/api/styles.md -------------------------------------------------------------------------------- /docs/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/docs/installation.md -------------------------------------------------------------------------------- /docs/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/docs/intro.md -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/src/theme/TOC/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/src/theme/TOC/index.tsx -------------------------------------------------------------------------------- /docs/src/theme/TOC/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/src/theme/TOC/styles.module.css -------------------------------------------------------------------------------- /docs/src/theme/components/PremiumSupport/PremiumSupport.style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/src/theme/components/PremiumSupport/PremiumSupport.style.css -------------------------------------------------------------------------------- /docs/src/theme/components/PremiumSupport/PremiumSupport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/src/theme/components/PremiumSupport/PremiumSupport.tsx -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/banners/twg-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/static/img/banners/twg-dark.png -------------------------------------------------------------------------------- /docs/static/img/banners/twg-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/static/img/banners/twg-light.png -------------------------------------------------------------------------------- /docs/static/img/customization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/static/img/customization.svg -------------------------------------------------------------------------------- /docs/static/img/easy-to-use.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/static/img/easy-to-use.svg -------------------------------------------------------------------------------- /docs/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/static/img/favicon.png -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/static/img/og-image.png -------------------------------------------------------------------------------- /docs/static/img/rely-on-rnv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/static/img/rely-on-rnv.svg -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- 1 | export { default } from './src/App'; 2 | -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/videoplayer/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/java/videoplayer/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/videoplayer/example/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/java/videoplayer/example/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-hdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/drawable-hdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-mdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/drawable-mdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/react-settings-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/react-settings-plugin/build.gradle.kts -------------------------------------------------------------------------------- /example/android/react-settings-plugin/src/main/kotlin/expo/plugins/ReactSettingsPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/react-settings-plugin/src/main/kotlin/expo/plugins/ReactSettingsPlugin.kt -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/Podfile.properties.json -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/SplashScreen.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/Images.xcassets/SplashScreen.imageset/image.png -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/SplashScreenBackground.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/Images.xcassets/SplashScreenBackground.imageset/image.png -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/Info.plist -------------------------------------------------------------------------------- /example/ios/example/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/example/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/SplashScreen.storyboard -------------------------------------------------------------------------------- /example/ios/example/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/Supporting/Expo.plist -------------------------------------------------------------------------------- /example/ios/example/example-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/example-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/example/example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/example.entitlements -------------------------------------------------------------------------------- /example/ios/example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/main.m -------------------------------------------------------------------------------- /example/ios/example/noop-file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/ios/example/noop-file.swift -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/package.json -------------------------------------------------------------------------------- /src/Thumbnail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/Thumbnail.tsx -------------------------------------------------------------------------------- /src/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/Video.tsx -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/controls/Controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/controls/Controls.tsx -------------------------------------------------------------------------------- /src/controls/ControlsAnimatedWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/controls/ControlsAnimatedWrapper.tsx -------------------------------------------------------------------------------- /src/controls/Duration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/controls/Duration.tsx -------------------------------------------------------------------------------- /src/controls/Fullscreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/controls/Fullscreen.tsx -------------------------------------------------------------------------------- /src/controls/Mute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/controls/Mute.tsx -------------------------------------------------------------------------------- /src/controls/PlayButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/controls/PlayButton.tsx -------------------------------------------------------------------------------- /src/controls/Seekbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/controls/Seekbar.tsx -------------------------------------------------------------------------------- /src/img/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/fullscreen.png -------------------------------------------------------------------------------- /src/img/fullscreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/fullscreen@2x.png -------------------------------------------------------------------------------- /src/img/fullscreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/fullscreen@3x.png -------------------------------------------------------------------------------- /src/img/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/pause.png -------------------------------------------------------------------------------- /src/img/pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/pause@2x.png -------------------------------------------------------------------------------- /src/img/pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/pause@3x.png -------------------------------------------------------------------------------- /src/img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/play.png -------------------------------------------------------------------------------- /src/img/play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/play@2x.png -------------------------------------------------------------------------------- /src/img/play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/play@3x.png -------------------------------------------------------------------------------- /src/img/volume_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/volume_off.png -------------------------------------------------------------------------------- /src/img/volume_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/volume_off@2x.png -------------------------------------------------------------------------------- /src/img/volume_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/volume_off@3x.png -------------------------------------------------------------------------------- /src/img/volume_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/volume_on.png -------------------------------------------------------------------------------- /src/img/volume_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/volume_on@2x.png -------------------------------------------------------------------------------- /src/img/volume_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/img/volume_on@3x.png -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheWidlarzGroup/react-native-video-player/HEAD/yarn.lock --------------------------------------------------------------------------------