gitextract_0gj22a5x/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ └── config.yml │ ├── actions/ │ │ └── setup/ │ │ └── action.yml │ └── workflows/ │ └── ci.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 ├── EmojiPopup.podspec ├── LICENSE ├── README.md ├── android/ │ ├── build.gradle │ ├── gradle.properties │ └── src/ │ ├── fabric/ │ │ └── EmojiPopupViewManager.kt │ ├── main/ │ │ ├── AndroidManifest.xml │ │ ├── AndroidManifestNew.xml │ │ └── java/ │ │ └── com/ │ │ └── emojipopup/ │ │ ├── EmojiPopupPackage.kt │ │ ├── EmojiPopupView.kt │ │ └── EmojiSelectedEvent.kt │ └── oldarch/ │ └── EmojiPopupViewManager.kt ├── babel.config.js ├── example/ │ ├── .bundle/ │ │ └── config │ ├── .watchmanconfig │ ├── Gemfile │ ├── README.md │ ├── android/ │ │ ├── app/ │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src/ │ │ │ ├── debug/ │ │ │ │ └── AndroidManifest.xml │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── emojipopup/ │ │ │ │ └── example/ │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res/ │ │ │ ├── drawable/ │ │ │ │ └── rn_edit_text_material.xml │ │ │ └── values/ │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios/ │ │ ├── .xcode.env │ │ ├── EmojiPopupExample/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── EmojiPopupExample.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── EmojiPopupExample.xcscheme │ │ ├── EmojiPopupExample.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── Podfile │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── react-native.config.js │ └── src/ │ └── App.tsx ├── ios/ │ ├── EmojiPopupView.h │ ├── EmojiPopupView.mm │ ├── EmojiPopupView.swift │ ├── EmojiPopupViewManager.mm │ └── Events/ │ └── OnEmojiSelectedEvent.swift ├── lefthook.yml ├── package.json ├── src/ │ ├── EmojiPopup.android.tsx │ ├── EmojiPopup.tsx │ ├── EmojiPopupViewNativeComponent.ts │ ├── __tests__/ │ │ └── index.test.tsx │ ├── index.tsx │ └── types.ts ├── tsconfig.build.json ├── tsconfig.json └── turbo.json