From 7352b52a395c15e711fbd7336e05d2277d6683b5 Mon Sep 17 00:00:00 2001 From: Crazelu Date: Wed, 10 Jul 2024 00:28:53 +0100 Subject: [PATCH] v2.1.0 --- CHANGELOG.md | 7 +++++++ README.md | 2 +- pubspec.yaml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6feb35..d0fd262 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,3 +29,10 @@ * Adds improvement to logic which re-activates the search context from backtracking. * Updates documentation and example project. +## 2.1.0 + +* Introduces `OverlayPosition` to indicate where the overlay should be positioned relative to the `TextField`. +* Clears FlutterTaggerController's `formattedText` when `clear` is called. +* Fixes issue with re-activating the search context with a trigger character immediately after adding a tag. +* Removes the need for TextFields returned from FlutterTagger's builder to be wrapped with a Container to which the key from the closure must be passed. The key can now be passed directly to the TextField. + diff --git a/README.md b/README.md index c311ccd..7ab5f13 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ In the `pubspec.yaml` of your flutter project, add the following dependency: ```yaml dependencies: - fluttertagger: ^2.0.0 + fluttertagger: ^2.1.0 ``` ## Import the package in your project 📥 diff --git a/pubspec.yaml b/pubspec.yaml index 1cae5a2..8c8aea2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: fluttertagger description: A Flutter package that allows for the extension of TextFields to provide tagging capabilities (user mentions, hashtags, etc). -version: 2.0.0 +version: 2.1.0 repository: https://github.com/Crazelu/fluttertagger issue_tracker: https://github.com/Crazelu/fluttertagger/issues