Skip to content

Commit e910e59

Browse files
committed
reactive_image_picker 8.0.0
1 parent b76c6e0 commit e910e59

File tree

3 files changed

+11
-43
lines changed

3 files changed

+11
-43
lines changed

packages/reactive_image_picker/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [8.0.0]
2+
3+
* package bumps
4+
15
## [7.0.0]
26

37
* fixes for `selectedValueBuilder` and `deleteDialogBuilder`
Lines changed: 5 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: reactive_image_picker
22
description: Wrapper around image_picker to work with reactive_forms
3-
version: 7.0.0
3+
version: 8.0.0
44
repository: https://github.com/artflutter/reactive_forms_widgets/tree/master/packages/reactive_image_picker
55
issue_tracker: https://github.com/artflutter/reactive_forms_widgets/issues
66

@@ -14,48 +14,12 @@ dependencies:
1414
reactive_forms: ">=16.0.0 <18.0.0"
1515
freezed_annotation: ^3.0.0
1616
image_picker: ^1.1.2
17-
app_settings: ^5.1.1
18-
video_player: ^2.9.2
17+
app_settings: ^6.1.1
18+
video_player: ^2.9.5
1919

2020
dev_dependencies:
2121
flutter_test:
2222
sdk: flutter
23-
freezed: ^3.0.0
23+
freezed: ^3.0.6
2424
build_runner: ^2.4.13
25-
flutter_lints: ^5.0.0
26-
27-
# For information on the generic Dart part of this file, see the
28-
# following page: https://dart.dev/tools/pub/pubspec
29-
30-
# The following section is specific to Flutter.
31-
flutter:
32-
# To add assets to your package, add an assets section, like this:
33-
# assets:
34-
# - images/a_dot_burr.jpeg
35-
# - images/a_dot_ham.jpeg
36-
#
37-
# For details regarding assets in packages, see
38-
# https://flutter.dev/assets-and-images/#from-packages
39-
#
40-
# An image asset can refer to one or more resolution-specific "variants", see
41-
# https://flutter.dev/assets-and-images/#resolution-aware.
42-
43-
# To add custom fonts to your package, add a fonts section here,
44-
# in this "flutter" section. Each entry in this list should have a
45-
# "family" key with the font family name, and a "fonts" key with a
46-
# list giving the asset and other descriptors for the font. For
47-
# example:
48-
# fonts:
49-
# - family: Schyler
50-
# fonts:
51-
# - asset: fonts/Schyler-Regular.ttf
52-
# - asset: fonts/Schyler-Italic.ttf
53-
# style: italic
54-
# - family: Trajan Pro
55-
# fonts:
56-
# - asset: fonts/TrajanPro.ttf
57-
# - asset: fonts/TrajanPro_Bold.ttf
58-
# weight: 700
59-
#
60-
# For details regarding fonts in packages, see
61-
# https://flutter.dev/custom-fonts/#from-packages
25+
flutter_lints: ^5.0.0

packages/reactive_range_slider/lib/reactive_range_slider.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ class ReactiveRangeSlider<T> extends ReactiveFormField<T, RangeValues> {
4444
Color? activeColor,
4545
Color? inactiveColor,
4646
SemanticFormatterCallback? semanticFormatterCallback,
47-
MaterialStateProperty<MouseCursor?>? mouseCursor,
48-
MaterialStateProperty<Color?>? overlayColor,
47+
WidgetStateProperty<MouseCursor?>? mouseCursor,
48+
WidgetStateProperty<Color?>? overlayColor,
4949
}) : super(
5050
builder: (field) {
5151
final InputDecoration effectiveDecoration = (decoration ??

0 commit comments

Comments
 (0)