gitextract_spgyzzun/ ├── .commitlintrc.json ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .markdownlint.json ├── .npmignore ├── .watchmanconfig ├── .yarn/ │ └── releases/ │ └── yarn-3.6.4.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── README^2.md ├── README^3.md ├── babel.config.js ├── example/ │ ├── .gitignore │ ├── App.tsx │ ├── Gemfile │ ├── README.md │ ├── __tests__/ │ │ └── App.test.tsx │ ├── android/ │ │ ├── app/ │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src/ │ │ │ ├── debug/ │ │ │ │ └── AndroidManifest.xml │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── autocompletedropdownplayground/ │ │ │ │ ├── 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 │ ├── components/ │ │ ├── CustomRightIconExample.tsx │ │ ├── LocalDataSetExample.tsx │ │ ├── LocalDataSetExample2.tsx │ │ ├── ModalExample.tsx │ │ ├── RemoteDataSetExample.tsx │ │ ├── RemoteDataSetExample2.tsx │ │ └── RemoteDataSetExample3.tsx │ ├── helpers.ts │ ├── index.js │ ├── ios/ │ │ ├── .xcode.env │ │ ├── AutocompleteDropdownPlayground/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── AutocompleteDropdownPlayground.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── AutocompleteDropdownPlayground.xcscheme │ │ ├── AutocompleteDropdownPlayground.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── Podfile │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ └── tsconfig.json ├── lefthook.yml ├── package.json ├── src/ │ ├── AutocompleteDropdownContext.tsx │ ├── Dropdown.tsx │ ├── HOC/ │ │ └── withFadeAnimation.tsx │ ├── NothingFound.tsx │ ├── RightButton.tsx │ ├── ScrollViewListItem.tsx │ ├── diacriticless.ts │ ├── helpers.ts │ ├── index.tsx │ ├── theme.tsx │ ├── types/ │ │ ├── global.d.ts │ │ └── index.ts │ └── useKeyboardHeight.ts ├── tsconfig.build.json └── tsconfig.json