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 #46 #47

Merged
merged 1 commit into from
Sep 7, 2020
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
Fix #46
  • Loading branch information
TinoGuo committed Sep 7, 2020
commit 46ba25b04550eb61826b9e90b9436008dee22a9c
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