gitextract__twugb5m/ ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── autocomplete_textfield.iml ├── doc/ │ ├── api/ │ │ ├── __404error.html │ │ ├── autocomplete_textfield/ │ │ │ ├── AutoCompleteOverlayItemBuilder.html │ │ │ ├── AutoCompleteTextField/ │ │ │ │ ├── AutoCompleteTextField.html │ │ │ │ ├── addSuggestion.html │ │ │ │ ├── autocorrect.html │ │ │ │ ├── autofocus.html │ │ │ │ ├── clear.html │ │ │ │ ├── clearOnSubmit.html │ │ │ │ ├── controller.html │ │ │ │ ├── createState.html │ │ │ │ ├── cursorColor.html │ │ │ │ ├── cursorRadius.html │ │ │ │ ├── cursorWidth.html │ │ │ │ ├── decoration.html │ │ │ │ ├── focusNode.html │ │ │ │ ├── inputFormatters.html │ │ │ │ ├── itemBuilder.html │ │ │ │ ├── itemFilter.html │ │ │ │ ├── itemSorter.html │ │ │ │ ├── itemSubmitted.html │ │ │ │ ├── key.html │ │ │ │ ├── keyboardType.html │ │ │ │ ├── minLength.html │ │ │ │ ├── onFocusChanged.html │ │ │ │ ├── removeSuggestion.html │ │ │ │ ├── showCursor.html │ │ │ │ ├── style.html │ │ │ │ ├── submitOnSuggestionTap.html │ │ │ │ ├── suggestions.html │ │ │ │ ├── suggestionsAmount.html │ │ │ │ ├── textCapitalization.html │ │ │ │ ├── textChanged.html │ │ │ │ ├── textField.html │ │ │ │ ├── textInputAction.html │ │ │ │ ├── textSubmitted.html │ │ │ │ ├── triggerSubmitted.html │ │ │ │ ├── unFocusOnItemSubmitted.html │ │ │ │ ├── updateDecoration.html │ │ │ │ └── updateSuggestions.html │ │ │ ├── AutoCompleteTextField-class.html │ │ │ ├── AutoCompleteTextFieldState/ │ │ │ │ ├── AutoCompleteTextFieldState.html │ │ │ │ ├── addSuggestion.html │ │ │ │ ├── autocorrect.html │ │ │ │ ├── autofocus.html │ │ │ │ ├── build.html │ │ │ │ ├── clear.html │ │ │ │ ├── clearOnSubmit.html │ │ │ │ ├── controller.html │ │ │ │ ├── currentText.html │ │ │ │ ├── cursorColor.html │ │ │ │ ├── cursorRadius.html │ │ │ │ ├── cursorWidth.html │ │ │ │ ├── decoration.html │ │ │ │ ├── dispose.html │ │ │ │ ├── filteredSuggestions.html │ │ │ │ ├── focusNode.html │ │ │ │ ├── getSuggestions.html │ │ │ │ ├── inputFormatters.html │ │ │ │ ├── itemBuilder.html │ │ │ │ ├── itemFilter.html │ │ │ │ ├── itemSorter.html │ │ │ │ ├── itemSubmitted.html │ │ │ │ ├── keyboardType.html │ │ │ │ ├── listSuggestionsEntry.html │ │ │ │ ├── minLength.html │ │ │ │ ├── onFocusChanged.html │ │ │ │ ├── removeSuggestion.html │ │ │ │ ├── showCursor.html │ │ │ │ ├── style.html │ │ │ │ ├── submitOnSuggestionTap.html │ │ │ │ ├── suggestions.html │ │ │ │ ├── suggestionsAmount.html │ │ │ │ ├── textCapitalization.html │ │ │ │ ├── textChanged.html │ │ │ │ ├── textField.html │ │ │ │ ├── textInputAction.html │ │ │ │ ├── textSubmitted.html │ │ │ │ ├── triggerSubmitted.html │ │ │ │ ├── unFocusOnItemSubmitted.html │ │ │ │ ├── updateDecoration.html │ │ │ │ ├── updateOverlay.html │ │ │ │ └── updateSuggestions.html │ │ │ ├── AutoCompleteTextFieldState-class.html │ │ │ ├── Filter.html │ │ │ ├── InputEventCallback.html │ │ │ ├── SimpleAutoCompleteTextField/ │ │ │ │ ├── SimpleAutoCompleteTextField.html │ │ │ │ ├── autofocus.html │ │ │ │ ├── controller.html │ │ │ │ ├── createState.html │ │ │ │ ├── cursorColor.html │ │ │ │ ├── cursorRadius.html │ │ │ │ ├── cursorWidth.html │ │ │ │ ├── focusNode.html │ │ │ │ ├── minLength.html │ │ │ │ ├── onFocusChanged.html │ │ │ │ ├── showCursor.html │ │ │ │ ├── textChanged.html │ │ │ │ └── textSubmitted.html │ │ │ ├── SimpleAutoCompleteTextField-class.html │ │ │ ├── StringCallback.html │ │ │ └── autocomplete_textfield-library.html │ │ ├── categories.json │ │ ├── index.html │ │ ├── index.json │ │ └── static-assets/ │ │ ├── github.css │ │ ├── highlight.pack.js │ │ ├── readme.md │ │ ├── script.js │ │ └── styles.css │ └── autocomplete_textfield.md ├── example/ │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android/ │ │ ├── app/ │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ ├── debug/ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── main/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java/ │ │ │ │ │ └── com/ │ │ │ │ │ └── example/ │ │ │ │ │ └── example/ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res/ │ │ │ │ ├── drawable/ │ │ │ │ │ └── launch_background.xml │ │ │ │ └── values/ │ │ │ │ └── styles.xml │ │ │ └── profile/ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ └── settings.gradle │ ├── ios/ │ │ ├── Flutter/ │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── flutter_export_environment.sh │ │ ├── Runner/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.imageset/ │ │ │ │ ├── Contents.json │ │ │ │ └── README.md │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── Runner.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── Runner.xcscheme │ │ └── Runner.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── lib/ │ │ └── main.dart │ ├── pubspec.yaml │ └── test/ │ └── widget_test.dart ├── lib/ │ └── autocomplete_textfield.dart └── pubspec.yaml