Skip to content

Commit

Permalink
Overflow.visible was removed (diegoveloper#80)
Browse files Browse the repository at this point in the history
* Update Version SDK (diegoveloper#76)

* changelog updated

* updated

Co-authored-by: Brayan Cantos <[email protected]>
  • Loading branch information
diegoveloper and br-programmer authored Sep 23, 2020
1 parent 8c7ea40 commit 8d0e388
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/linear_percent_indicator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class _LinearPercentIndicatorState extends State<LinearPercentIndicator>
height: widget.lineHeight,
padding: widget.padding,
child: Stack(
overflow: Overflow.visible,
clipBehavior: Clip.none,
children: [
CustomPaint(
key: _containerKey,
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: 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/

Expand Down

0 comments on commit 8d0e388

Please sign in to comment.