Skip to content

Commit 004cb41

Browse files
committed
chore: Update example app dependencies
1 parent dc08d76 commit 004cb41

File tree

5 files changed

+103
-109
lines changed

5 files changed

+103
-109
lines changed

packages/example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ android {
4343
defaultConfig {
4444
applicationId "com.google.ml.kit.flutter.example"
4545
minSdkVersion 21
46-
targetSdkVersion 33
46+
targetSdkVersion 34
4747
versionCode flutterVersionCode.toInteger()
4848
versionName flutterVersionName
4949
}

packages/example/ios/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PODS:
88
- Flutter
99
- google_mlkit_commons
1010
- GoogleMLKit/BarcodeScanning (~> 6.0.0)
11-
- google_mlkit_commons (0.7.1):
11+
- google_mlkit_commons (0.8.0):
1212
- Flutter
1313
- MLKitVision
1414
- google_mlkit_digital_ink_recognition (0.12.0):
@@ -386,11 +386,11 @@ EXTERNAL SOURCES:
386386
:path: ".symlinks/plugins/path_provider_foundation/darwin"
387387

388388
SPEC CHECKSUMS:
389-
camera_avfoundation: 3125e8cd1a4387f6f31c6c63abb8a55892a9eeeb
389+
camera_avfoundation: dd002b0330f4981e1bbcb46ae9b62829237459a4
390390
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
391391
flutter_pdfview: 25f53dd6097661e6395b17de506e6060585946bd
392392
google_mlkit_barcode_scanning: 383d0c2dd62d92b36c0b10c7e69cf98d3650dc40
393-
google_mlkit_commons: 96aaca445520311b84a2da013dedf3427fe4cc69
393+
google_mlkit_commons: dae24dec1b427cddec7f981f4abbf95aff8bb19e
394394
google_mlkit_digital_ink_recognition: b9abc8bbe3b9a62a28b2740efc74d9324d8b24c5
395395
google_mlkit_document_scanner: 5b889061c0b0967d83cb0c15c1b084776f509a00
396396
google_mlkit_entity_extraction: 6a2f93e1d83cd971a453052a955084e22fadb0ed
@@ -410,7 +410,7 @@ SPEC CHECKSUMS:
410410
GoogleUtilities: d053d902a8edaa9904e1bd00c37535385b8ed152
411411
GoogleUtilitiesComponents: 679b2c881db3b615a2777504623df6122dd20afe
412412
GTMSessionFetcher: 8000756fc1c19d2e5697b90311f7832d2e33f6cd
413-
image_picker_ios: 4a8aadfbb6dc30ad5141a2ce3832af9214a705b5
413+
image_picker_ios: c560581cceedb403a6ff17f2f816d7fea1421fc1
414414
MLImage: 1824212150da33ef225fbd3dc49f184cf611046c
415415
MLKitBarcodeScanning: 10ca0845a6d15f2f6e911f682a1998b68b973e8b
416416
MLKitCommon: afec63980417d29ffbb4790529a1b0a2291699e1
@@ -443,7 +443,7 @@ SPEC CHECKSUMS:
443443
MLKitVisionKit: 6d2ea9741b262ec0fed2a5a3de521cfa671c6e83
444444
MLKitXenoCommon: 39060e7a54769d97a877152c59a1898e7f8d9e35
445445
nanopb: 438bc412db1928dac798aa6fd75726007be04262
446-
path_provider_foundation: 3784922295ac71e43754bd15e0653ccfd36a147c
446+
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
447447
PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
448448
SSZipArchive: c69881e8ac5521f0e622291387add5f60f30f3c4
449449

packages/example/lib/vision_detector_views/document_scanner_view.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ class _DocumentScannerViewState extends State<DocumentScannerView> {
4242
ElevatedButton(
4343
style: ButtonStyle(
4444
backgroundColor:
45-
MaterialStateProperty.all<Color>(Colors.black),
46-
shape: MaterialStateProperty.all(
45+
WidgetStateProperty.all<Color>(Colors.black),
46+
shape: WidgetStateProperty.all(
4747
RoundedRectangleBorder(
4848
borderRadius: BorderRadius.circular(8),
4949
),
@@ -62,8 +62,8 @@ class _DocumentScannerViewState extends State<DocumentScannerView> {
6262
ElevatedButton(
6363
style: ButtonStyle(
6464
backgroundColor:
65-
MaterialStateProperty.all<Color>(Colors.black),
66-
shape: MaterialStateProperty.all(
65+
WidgetStateProperty.all<Color>(Colors.black),
66+
shape: WidgetStateProperty.all(
6767
RoundedRectangleBorder(
6868
borderRadius: BorderRadius.circular(8),
6969
),

0 commit comments

Comments
 (0)