diff --git a/CHANGELOG.md b/CHANGELOG.md index f237961..d1c8ede 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ +# [2.0.6] - 28.09.2023 +* Fix custom decoration and hide tooltip on tab + # [2.0.5] - 10.08.2023 * Feature - add blur (imageFilter) # [2.0.4] - 28.06.2023 diff --git a/README.md b/README.md index 0b83b50..8df10d1 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ This will add a line like this to your package's pubspec.yaml (and run an implic ``` dependencies: - super_tooltip: ^2.0.5 + super_tooltip: latest ``` Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more. diff --git a/lib/src/super_tooltip.dart b/lib/src/super_tooltip.dart index a8ab0c2..5b91d4e 100644 --- a/lib/src/super_tooltip.dart +++ b/lib/src/super_tooltip.dart @@ -87,6 +87,10 @@ class SuperTooltip extends StatefulWidget { // need just offset, since it's 4 way directional // this.verticalOffset = 24.0, this.backgroundColor, + + // + // + // this.decoration, this.child, this.borderColor = Colors.black, diff --git a/pubspec.yaml b/pubspec.yaml index 9fe463e..453c5b8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: super_tooltip description: Super flexible Tooltip class that gets opend in the screens overlay -version: 2.0.5 +version: 2.0.6 homepage: https://github.com/escamoteur/super_tooltip