All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning. This file follows the convention described at Keep a Changelog.
- amorenew: Added
scrollPositionAlignmentPolicy
parameter so I can ensure visible alignment to top or bottom. - amorenew: Upgrade to Flutter SDK >=3.0.0 and Dart SDK >=3.0.0
- Removed redundant call to
onChanged()
fromselectSuggestion()
.
- sarbogast: fixed failure on web due to bug fix in previous release.
- BurningAXE: do not show the on-screen keyboard on widget init.
- Backspace on browser would delete two values at once.
- Keep text value up-to-date when chips are removed.
- Input field height no longer hard-coded, now controlled by
maxHeight
.
- Resetting the version number to
1.0.0
to reflect name change.
- ziyadsfaxi: add suggestions box elevation option.
- ziyadsfaxi: add box decoration to suggestions box.
- chipsfork: optionally show initial suggestions.
- chipsfork: option to not show keyboard when input is focused.
- hest: fix Unicode character disappearing when complete.
- jorelkimcruz: fix backspace bug for android.
- SocialStrata: fix ios keyboard jitter.
- tstrg: fix
Failed assertion 'attached': is not true
. - joCur: add a Null-Check before insert the overlayEntry inside SuggestionBoxController.
- noworyta: add performSelector override.
- ChillkroeteTTS: make ensureVisible optional to accommodate desktop and web platforms.
- huseyinhamad: add performSelector and didChangeInputControl overrides.
- Eimji: use WITH the mixin TextInputClient to avoid missing @override implementations.
- Eimji: fix warnings, errors, iOS Keyboard entry, backspace for Android, unicode char.
- Flutter 3 compatibility
- Cursor color fallback if not defined in the Theme.
- Fix bug where suggestion box never opens after maxChips reached.
- Fix bug where widget still works when enabled set to false.
- Added null-safety.
- Fixed lack of implementation for suggestionsBoxMaxHeight.
- Fixed the support for
suggestionsBoxMaxHeight
. - Added optional
initialSuggestions
parameter so that one can see the suggestions box as soon as the field gains focus, without typing in the keyboard.
- Fixed bug where
FocusNode
was not being properly disposed. - Applied
pedantic
rules and cleaned up code. - Improved type safety.
- Removed unused
AlwaysDisabledFocusNode
class. - Added Continuous Integration and Code Coverage analysis.
- Builds against stable, beta, and dev channels.
- Regenerated
example
app.
- Fix bug where first chip disappears, replaced with typed character.
- Include override for
TextInputClient.performPrivateCommand
prevents breakage in pre-release Flutter versions.
- Fixed keyboard hiding.
- Fix bug "Bad UTF-8 encoding found while decoding string".
- Added support for Flutter v1.20.
- Fixed bug in checking whether
maxChips
has been reached. - Fix
setState called on disposed widget
.
- Added
autofocus
feature. - Allow user-entered text to be edited when chip is deleted with keyboard.
- Attempt to fix hover issue in suggestion box items for Flutter Web.
- When TextInputAction (e.g Done) is tapped on Keyboard, select first suggestion.
- Fixed bug where when keyboard is dismissed and focus retained, keyboard couldn't come back.
- Show overlay above field if more space available.
- Attempt to ensure to ensure field always visible.
- Also fixed issue when overlay position doesn't adjust with field height.
- Fixed bug:
The non-abstract class 'ChipsInputState' is missing implementations for these members: - TextInputClient.showAutocorrectionPromptRect
in Flutter >= 1.18.* on channel master. - Fix bug where focus is lost when user selects option.
- Fixed bug:
The non-abstract class 'ChipsInputState' is missing implementations
in Flutter >= 1.13.*. - artembakhanov: fix text overflow.
- Deprecated
onChipTapped
function.
- Removed unused/unimplemented attribute
onChipTapped
.
- Reintroduced
onChipTapped
to avoid breaking changes.
- Implemented
TextInputClient
'sconnectionClosed()
method override - compatibility with Flutter versions > 1.9 - Remove unused/unimplemented attribute
onChipTapped
.
- Fix setEditingState error.
- Added TextInputConfiguration options -
inputType
,obscureText
,autocorrect
,actionLabel
,inputAction
,keyboardAppearance
. - Use theme's cursorColor instead of primaryColor.
- Resize the suggestions overlay when on-screen keyboard appears.
- dgsc-fav: fixed iOS crash when deleting a chip with the keyboard.
- Resolve overlay assertion error
'_overlay != null': is not true
.
- New attribute
textStyle
allows changing theTextStyle
of the TextInput.
- kengu: removed unwanted top and bottom padding from ListView in suggestions overlay.
- Max number of chips can now be set using
maxChips
attribute.
- Input can now be disabled by setting
enabled
attribute tofalse
.
- Fixed bug in later versions of Flutter where implementation of abstract method
void updateFloatingCursor(RawFloatingCursorPoint point);
missing. - Fixed bug where
initialValue
chips cannot be deleted with keyboard. - Fixed bug where
onChanged()
not fired when deleting chip using keyboard.
- Minor improvements in documentation.
- Improved library description.
- Properly formatted example code in README.
- Added example to README.
- Initial release