Skip to content

Commit

Permalink
Fix #46 (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
TinoGuo authored Sep 7, 2020
1 parent b0ae7ae commit 9907227
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## [3.1.1] - 2020/09/08
* Fix: [#46](https://github.com/TinoGuo/pin_input_text_field/issues/46)

## [3.1.0] - 2020/09/05
* **Breaking Change, the `color` is renamed to `colorBuilder` as well as enterColor, the `solidColor` is renamed to `bgColorBuilder`
* **Breaking Change, the `color` is renamed to `colorBuilder` as well as enterColor, the `solidColor` is renamed to `bgColorBuilder`**
* New: Support stroke color and background color change when enter new pin
* Fix: InnerRadius overlap the stroke
* Fix: Some scenarios not update the paint
Expand Down
2 changes: 1 addition & 1 deletion lib/src/decoration/pin_decoration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class SupportGap {
double get getGapWidth => 0;

/// The gaps between every two adjacent box, higher priority than [gapSpace].
List<double> get getGapWidthList => List.empty();
List<double> get getGapWidthList => const [];
}

abstract class PinDecoration {
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: pin_input_text_field
description: A textField widget to help display different style pin written in pure dart, no extra dependency.
version: 3.1.0
version: 3.1.1
homepage: https://github.com/TinoGuo/pin_input_text_field

environment:
Expand Down

0 comments on commit 9907227

Please sign in to comment.