ghost_autocomplete 1.2.1
ghost_autocomplete: ^1.2.1 copied to clipboard
A comprehensive Flutter package for ghost (predictive inline) autocomplete and dropdown-style suggestions. Includes Form support, Copilot-style Tab badges, and pixel-perfect alignment.
1.2.1 #
- Enhanced
GhostSpellCheckTextFieldwith full styling support for misspelled words:- Added
misspelledTextStylefor custom underlines (wavy, dotted, etc.). - Added
misspelledSelectionColorfor selection highlight customization. - Added
spellCheckSuggestionsToolbarBuilderfor custom context menus.
- Added
- Updated example app to demonstrate custom dotted red underline style.
1.2.0 #
- Added
GhostSpellCheckTextFieldfor combined inline ghost autocomplete and custom spell check. - Added
GhostSpellCheckServiceto provide custom, asynchronous spell check suggestions from user-defined lists or APIs. - Added "Custom Spell" demo to the example app.
- Compatible with latest Flutter (3.29.x) spell check APIs.
1.1.0 #
- Added support for asynchronous suggestion providers (
FutureOr<String?>). - Implemented built-in race condition protection for async requests.
- Added "Asynchronous API Demo" to the example app.
- Improved documentation for async usage.
1.0.0 #
- Initial Release.
- Added
GhostAutocompleteTextFieldfor inline "ghost" predictive typing with pixel-perfect alignment. - Added
GhostAutocompleteTextFormFieldfor seamless Flutter Form integration (validation, onSaved, etc.). - Added
GhostAutocompleteListTextFieldfor dropdown-style multi-option suggestions (Google Maps style). - Integrated Copilot-style "Tab" badges to quickly accept suggestions via mouse or keyboard.
- Support for 40+ standard
TextFieldparameters includingtextAlign,maxLines,obscureText, and more. - Support for
spellCheckConfigurationandautocorrect. - Synchronized scrolling for inline suggestions.
- Broad compatibility: Dart SDK >= 3.0.0 and Flutter >= 3.0.0.