Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Custom decoration #75

Merged
merged 3 commits into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 4 additions & 0 deletions lib/src/super_tooltip.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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


Expand Down