Skip to content

Commit 713e663

Browse files
committed
reactive_color_picker 2.2.1
1 parent e665c9d commit 713e663

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

packages/reactive_color_picker/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [2.2.1]
2+
3+
* fixed deprecations
4+
15
## [2.2.0]
26

37
* color picker builders for more customisations

packages/reactive_color_picker/lib/src/reactive_bloc_color_picker.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Widget _defaultItemBuilder(
3636
color: color,
3737
boxShadow: [
3838
BoxShadow(
39-
color: color.withOpacity(0.8),
39+
color: color.withAlpha(200),
4040
offset: const Offset(1, 2),
4141
blurRadius: 5)
4242
],

packages/reactive_color_picker/lib/src/reactive_multiple_bloc_color_picker.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Widget _defaultItemBuilder(
3636
color: color,
3737
boxShadow: [
3838
BoxShadow(
39-
color: color.withOpacity(0.8),
39+
color: color.withAlpha(200),
4040
offset: const Offset(1, 2),
4141
blurRadius: 5)
4242
],

packages/reactive_color_picker/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: reactive_color_picker
22
description: Wrapper around `flutter_colorpicker` to use with `reactive_forms`.
3-
version: 2.2.0
3+
version: 2.2.1
44
repository: https://github.com/artflutter/reactive_forms_widgets/tree/master/packages/reactive_color_picker
55
issue_tracker: https://github.com/artflutter/reactive_forms_widgets/issues
66

0 commit comments

Comments
 (0)