flutter_taggable 1.1.1
flutter_taggable: ^1.1.1 copied to clipboard
Mention users, insert hashtags, and tag other entities with this lightweight, customizable extension to TextEditingController. It provides a database-friendly format for easy storing and parsing of tags.
1.1.1 #
- Fixed a bug where the text after the last tag would not be set correctly when using
setText
on aTagTextEditingController
object. - Added a screenshot to the pubspec.yaml file.
- The deprecated
textStyle
parameter of theTagStyle
class has been removed.
1.1.0 #
- Added the
textStyleBuilder
parameter to theTagTextEditingController
constructor for determining the style of tags in the TextField, in favor of thetextStyle
parameter of theTagStyle
class, which has been deprecated. The builder allows you to use the TextField'sBuildContext
when initializing theTagTextEditingController
object in theinitState
method of a StatefulWidget, such that you can access inherited styles such asTheme.of(context).textTheme
.
1.0.1 #
- Fixed a formatting issue
1.0.0 #
- First stable release. Please refer to the README, the API documentation, and the examples for more information.
- Added support for tagging entities that have the same frontend format
- Added fine-grained control over the backend format of tags. This allows for more flexibility, including no longer requiring whitespace on either side of a tag.
- Added the
convertTagTextToInlineSpans
function, which converts tag text to inline spans with some customizability.
0.0.4 #
- Fixed a formatting issue
0.0.3 #
- Fixed a formatting issue
0.0.2 #
- Minor fixes to publishing issues
0.0.1 #
- Initial release