gitextract_0t5gxq63/ ├── .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 │ └── 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/ │ │ │ │ ├── rn_edit_text_material.xml │ │ │ │ └── splashscreen.xml │ │ │ ├── mipmap-anydpi-v26/ │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── values/ │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── values-night/ │ │ │ └── colors.xml │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── react-settings-plugin/ │ │ │ ├── build.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── expo/ │ │ │ └── plugins/ │ │ │ └── ReactSettingsPlugin.kt │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── ios/ │ │ ├── .gitignore │ │ ├── .xcode.env │ │ ├── Podfile │ │ ├── Podfile.properties.json │ │ ├── example/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── SplashScreen.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── SplashScreenBackground.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ ├── SplashScreen.storyboard │ │ │ ├── Supporting/ │ │ │ │ └── Expo.plist │ │ │ ├── example-Bridging-Header.h │ │ │ ├── example.entitlements │ │ │ ├── main.m │ │ │ └── noop-file.swift │ │ ├── example.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── example.xcscheme │ │ └── example.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── 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 │ └── index.tsx ├── tsconfig.build.json └── tsconfig.json