File tree Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 7.6.4
4
+ - ** CHORE** (vibration): Updated the ` vibration ` package to version ` 2.1.0 ` .
5
+ - ** FIX** (vibration): Resolved lint issues introduced by the package update.
6
+
3
7
## 7.6.3
4
8
- ** FIX** (grounded-design): Fixed an issue where aspect ratios were incorrectly selected regardless of the ` canChangeAspectRatio ` flag.
5
9
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ android {
46
46
// You can update the following values to match your application needs.
47
47
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
48
48
minSdkVersion 21
49
- targetSdkVersion 34
49
+ targetSdkVersion 35
50
50
versionCode flutterVersionCode. toInteger()
51
51
versionName flutterVersionName
52
52
}
Original file line number Diff line number Diff line change @@ -410,13 +410,13 @@ class ProImageEditorState extends State<ProImageEditor>
410
410
411
411
if (helperLines.hitVibration) {
412
412
Vibration .hasVibrator ().then ((hasVibrator) {
413
- layerInteractionManager.deviceCanVibrate = hasVibrator ?? false ;
413
+ layerInteractionManager.deviceCanVibrate = hasVibrator;
414
414
415
415
if (layerInteractionManager.deviceCanVibrate) {
416
416
Vibration .hasCustomVibrationsSupport ()
417
417
.then ((hasCustomVibrationsSupport) {
418
418
layerInteractionManager.deviceCanCustomVibrate =
419
- hasCustomVibrationsSupport ?? false ;
419
+ hasCustomVibrationsSupport;
420
420
});
421
421
}
422
422
});
Original file line number Diff line number Diff line change 1
1
name : pro_image_editor
2
2
description : " A Flutter image editor: Seamlessly enhance your images with user-friendly editing features."
3
- version : 7.6.3
3
+ version : 7.6.4
4
4
homepage : https://github.com/hm21/pro_image_editor/
5
5
repository : https://github.com/hm21/pro_image_editor/
6
6
issue_tracker : https://github.com/hm21/pro_image_editor/issues/
@@ -42,17 +42,17 @@ dependencies:
42
42
http : ^1.2.2
43
43
image : ^4.5.2
44
44
mime : ^2.0.0
45
- vibration : ^2.0.1
45
+ vibration : ^2.1.0
46
46
web : ^1.1.0
47
47
48
48
dev_dependencies :
49
49
flutter_test :
50
50
sdk : flutter
51
51
52
- build_runner : ^2.4.11
52
+ build_runner : ^2.4.15
53
53
flutter_lints : ^5.0.0
54
54
import_sorter : ^4.6.0
55
- mockito : ^5.4.4
55
+ mockito : ^5.4.5
56
56
network_image_mock : ^2.0.0
57
57
58
58
flutter :
You can’t perform that action at this time.
0 commit comments