gitextract_g62fpdm0/ ├── .gitignore ├── .yarn/ │ ├── plugins/ │ │ └── @yarnpkg/ │ │ └── plugin-after-install.cjs │ └── releases/ │ └── yarn-4.4.0.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── apps/ │ ├── docs/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── docs/ │ │ │ ├── api/ │ │ │ │ ├── _category_.json │ │ │ │ └── overview.mdx │ │ │ ├── guides/ │ │ │ │ ├── _category_.json │ │ │ │ ├── customization.mdx │ │ │ │ ├── installation.mdx │ │ │ │ ├── permissions.mdx │ │ │ │ └── usage.mdx │ │ │ └── limitations.mdx │ │ ├── docusaurus.config.ts │ │ ├── package.json │ │ ├── sidebars.ts │ │ ├── src/ │ │ │ ├── components/ │ │ │ │ ├── HomepageFeatures/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ └── Horizontal.tsx │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ └── pages/ │ │ │ ├── index.module.css │ │ │ ├── index.tsx │ │ │ └── markdown-page.md │ │ ├── static/ │ │ │ └── .nojekyll │ │ └── tsconfig.json │ └── example/ │ ├── .gitignore │ ├── README.md │ ├── app/ │ │ └── index.tsx │ ├── app.json │ ├── babel.config.js │ ├── eslint.config.js │ ├── metro.config.js │ ├── package.json │ ├── src/ │ │ ├── components/ │ │ │ ├── IDragDropContentView/ │ │ │ │ ├── IDragDropContentView.tsx │ │ │ │ ├── Video.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ └── hooks/ │ │ └── permission/ │ │ ├── index.ts │ │ ├── permission.android.ts │ │ └── permission.ts │ ├── tsconfig.json │ └── webpack.config.js ├── package.json ├── packages/ │ └── expo-drag-drop-content-view/ │ ├── .eslintrc.js │ ├── .expo/ │ │ └── README.md │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── android/ │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ └── expo/ │ │ └── modules/ │ │ └── dragdropcontentview/ │ │ ├── ExpoDragDropContentView.kt │ │ ├── ExpoDragDropContentViewModule.kt │ │ ├── Utils.kt │ │ └── records/ │ │ └── DraggableItem.kt │ ├── expo-module.config.json │ ├── ios/ │ │ ├── DragDropContentView.swift │ │ ├── ExpoDragDropContentView.podspec │ │ ├── ExpoDragDropContentView.swift │ │ ├── ExpoDragDropContentViewModule.swift │ │ └── Utils.swift │ ├── package.json │ ├── src/ │ │ ├── ExpoDragDropContentView.tsx │ │ ├── ExpoDragDropContentView.web.tsx │ │ ├── index.ts │ │ ├── mimeTypes.ts │ │ └── types.ts │ └── tsconfig.json ├── patches/ │ └── react-native-web+0.20.0.patch ├── scripts/ │ └── postinstall.sh └── turbo.json