From 8d0e388954375e9413de8ee3082a386e0555b58d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Vel=C3=A1squez=20L=C3=B3pez?= Date: Wed, 23 Sep 2020 10:14:08 -0500 Subject: [PATCH] Overflow.visible was removed (#80) * Update Version SDK (#76) * changelog updated * updated Co-authored-by: Brayan Cantos --- CHANGELOG.md | 2 +- README.md | 2 +- example/pubspec.lock | 2 +- lib/linear_percent_indicator.dart | 2 +- pubspec.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3df7d4f..263564e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 2.1.7 - 2.1.7+1 +# 2.1.7 - 2.1.7+1 - 2.1.7+2 - Added optional `widgetIndicator` for `CircularPercentIndicator` and `LinearPercentIndicator`, it's an indicator displayed at the end of the progress, it only works when the `animation` is `true`. Thanks to Brayan Cantos for the contribution # 2.1.6 diff --git a/README.md b/README.md index 52a5848..d7eb6f0 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Circular and Linear percent indicators You should ensure that you add the router as a dependency in your flutter project. ```yaml dependencies: - percent_indicator: "^2.1.7" + percent_indicator: "^2.1.7+2" ``` You should then run `flutter packages upgrade` or update your packages in IntelliJ. diff --git a/example/pubspec.lock b/example/pubspec.lock index d426409..af2f813 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -33,7 +33,7 @@ packages: path: ".." relative: true source: path - version: "2.1.7+1" + version: "2.1.7+2" sky_engine: dependency: transitive description: flutter diff --git a/lib/linear_percent_indicator.dart b/lib/linear_percent_indicator.dart index bd8d49c..d39ffc1 100644 --- a/lib/linear_percent_indicator.dart +++ b/lib/linear_percent_indicator.dart @@ -212,7 +212,7 @@ class _LinearPercentIndicatorState extends State height: widget.lineHeight, padding: widget.padding, child: Stack( - overflow: Overflow.visible, + clipBehavior: Clip.none, children: [ CustomPaint( key: _containerKey, diff --git a/pubspec.yaml b/pubspec.yaml index 6738324..e7e9a0c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: percent_indicator description: Library that allows you to display progress widgets based on percentage, can be Circular or Linear, you can also customize it to your needs. -version: 2.1.7+1 +version: 2.1.7+2 homepage: https://www.diegoveloper.com repository: https://github.com/diegoveloper/flutter_percent_indicator/