Skip to content

Commit

Permalink
Merge pull request #2 from iofod/beta
Browse files Browse the repository at this point in the history
1.0.2
  • Loading branch information
cikado authored Aug 9, 2022
2 parents 3a2fda2 + a2dee66 commit 19fa77a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@

* add i18n docs.
* format code.

## 1.0.2

* fix CSSFilter.blur()
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.1"
version: "1.0.2"
cupertino_icons:
dependency: "direct main"
description:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/filter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class CSSFilter {
if (!isNotNegative(value)) return child;

return ImageFiltered(
imageFilter: ImageFilter.blur(sigmaX: value, sigmaY: value),
imageFilter: ImageFilter.blur(sigmaX: value, sigmaY: value, tileMode: TileMode.decal),
child: child);
}

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: css_filter
description: Apply various filter effects in a CSS-like way in flutter, can be used on any widget, not just images, support custom filters and control filter intensity.
version: 1.0.1
version: 1.0.2
homepage: https://github.com/iofod/flutter_css_filter

environment:
Expand Down

0 comments on commit 19fa77a

Please sign in to comment.