- Flutter 3 compatibility
- Cursor color fallback if not defined in the Theme
- Fix bug where suggestion box never opens aftter 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. Fixes #34
- 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". Closes #47
- Added support for Flutter v1.20
- Fixed bug in checking whether
maxChips
has been reached. - Fix
setState called on disposed widget
- Added
autofocus
feature. Closes #41 - Allow user-entered text to be edited when chip is deleted with keyboard. Closes #38
- Attempt to fix hover issue in suggestion box items for Flutter Web. Fixes #30
- When TextInputAction (e.g Done) is tapped on Keyboard, select first suggestion. Fixes #21
- Fixed bug where when keyboard is dismissed and focus retained, keyboard couldn't come back
- Show overlay above field if more space available. Closes #24
- Attempt to ensure to ensure field always visible. Closes #25
- 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. Closes #32
- Fixed bug:
The non-abstract class 'ChipsInputState' is missing implementations
in Flutter >= 1.13.*. Closes #27 - Fix text overflow. Closes#18. Thanks to artembakhanov
- 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
. Closes #22
- Fix setEditingState error. Close #16
- 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
- Fixed iOS crash when deleting a chip with the keyboard. Closes #1. Thanks to Dmitry Korchagin
- Resolve overlay assertion error
'_overlay != null': is not true
.
- New attribute
textStyle
allows changing theTextStyle
of the TextInput
- Removed unwanted top and bottom padding from ListView in suggestions overlay. Credit Kenneth Gulbrandsøy
- 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.