Flutter packages updates to use git for dead packages.
This commit is contained in:
@@ -162,7 +162,9 @@ class _PokeFinderState extends State<PokeFinder> with WidgetsBindingObserver {
|
|||||||
void setZoom() async {
|
void setZoom() async {
|
||||||
logger.i(await cameraController.getMinZoomLevel());
|
logger.i(await cameraController.getMinZoomLevel());
|
||||||
logger.i(await cameraController.getMaxZoomLevel());
|
logger.i(await cameraController.getMaxZoomLevel());
|
||||||
logger.i(cameraController.setZoomLevel(2.0));
|
logger.i(cameraController.getMinZoomLevel());
|
||||||
|
logger.i(cameraController.getMaxZoomLevel());
|
||||||
|
logger.i(cameraController.setZoomLevel(0.7));
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|||||||
+22
-16
@@ -23,19 +23,23 @@ packages:
|
|||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.0"
|
version: "2.1.0"
|
||||||
camera:
|
camera:
|
||||||
dependency: "direct main"
|
dependency: "direct overridden"
|
||||||
description:
|
description:
|
||||||
name: camera
|
path: "packages/camera/camera"
|
||||||
url: "https://pub.dartlang.org"
|
ref: "feat/allowCameraZoomToUseAllPhysicalCameras"
|
||||||
source: hosted
|
resolved-ref: b0e1ea90690923b859b467ccd6f40a77e7347e0b
|
||||||
version: "0.9.8+1"
|
url: "https://github.com/lucasoskorep/plugins.git"
|
||||||
|
source: git
|
||||||
|
version: "0.10.0"
|
||||||
camera_android:
|
camera_android:
|
||||||
dependency: transitive
|
dependency: "direct overridden"
|
||||||
description:
|
description:
|
||||||
name: camera_android
|
path: "packages/camera/camera_android"
|
||||||
url: "https://pub.dartlang.org"
|
ref: "feat/allowCameraZoomToUseAllPhysicalCameras"
|
||||||
source: hosted
|
resolved-ref: b0e1ea90690923b859b467ccd6f40a77e7347e0b
|
||||||
version: "0.9.8+3"
|
url: "https://github.com/lucasoskorep/plugins.git"
|
||||||
|
source: git
|
||||||
|
version: "0.10.0+1"
|
||||||
camera_avfoundation:
|
camera_avfoundation:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -56,7 +60,7 @@ packages:
|
|||||||
name: camera_web
|
name: camera_web
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.2.1+6"
|
version: "0.3.0"
|
||||||
characters:
|
characters:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -358,12 +362,14 @@ packages:
|
|||||||
source: hosted
|
source: hosted
|
||||||
version: "0.9.0"
|
version: "0.9.0"
|
||||||
tflite_flutter_helper:
|
tflite_flutter_helper:
|
||||||
dependency: "direct main"
|
dependency: "direct overridden"
|
||||||
description:
|
description:
|
||||||
name: tflite_flutter_helper
|
path: "."
|
||||||
url: "https://pub.dartlang.org"
|
ref: master
|
||||||
source: hosted
|
resolved-ref: "0b49c8861b3d7a3e5ad97ba144bbc0e74b15eb5f"
|
||||||
version: "0.3.1"
|
url: "https://github.com/lucasoskorep/tflite_flutter_helper.git"
|
||||||
|
source: git
|
||||||
|
version: "0.3.0"
|
||||||
tuple:
|
tuple:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|||||||
+20
-2
@@ -34,12 +34,10 @@ dependencies:
|
|||||||
# The following adds the Cupertino Icons font to your application.
|
# The following adds the Cupertino Icons font to your application.
|
||||||
# Use with the CupertinoIcons class for iOS style icons.
|
# Use with the CupertinoIcons class for iOS style icons.
|
||||||
cupertino_icons: ^1.0.2
|
cupertino_icons: ^1.0.2
|
||||||
camera: ^0.9.7+1
|
|
||||||
image: ^3.2.0
|
image: ^3.2.0
|
||||||
logger: ^1.1.0
|
logger: ^1.1.0
|
||||||
path_provider: ^2.0.11
|
path_provider: ^2.0.11
|
||||||
tflite_flutter: ^0.9.0
|
tflite_flutter: ^0.9.0
|
||||||
tflite_flutter_helper: ^0.3.1
|
|
||||||
collection: ^1.16.0
|
collection: ^1.16.0
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
@@ -56,6 +54,26 @@ dev_dependencies:
|
|||||||
# For information on the generic Dart part of this file, see the
|
# For information on the generic Dart part of this file, see the
|
||||||
# following page: https://dart.dev/tools/pub/pubspec
|
# following page: https://dart.dev/tools/pub/pubspec
|
||||||
|
|
||||||
|
dependency_overrides:
|
||||||
|
camera_android:
|
||||||
|
git:
|
||||||
|
dependency: transitive
|
||||||
|
url: https://github.com/lucasoskorep/plugins.git
|
||||||
|
ref: feat/allowCameraZoomToUseAllPhysicalCameras
|
||||||
|
path: packages/camera/camera_android/
|
||||||
|
|
||||||
|
camera:
|
||||||
|
git:
|
||||||
|
url: https://github.com/lucasoskorep/plugins.git
|
||||||
|
ref: feat/allowCameraZoomToUseAllPhysicalCameras
|
||||||
|
path: packages/camera/camera/
|
||||||
|
|
||||||
|
tflite_flutter_helper:
|
||||||
|
git:
|
||||||
|
url: https://github.com/lucasoskorep/tflite_flutter_helper.git
|
||||||
|
ref: master
|
||||||
|
|
||||||
|
|
||||||
# The following section is specific to Flutter packages.
|
# The following section is specific to Flutter packages.
|
||||||
flutter:
|
flutter:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user