提交 486f43de authored 作者: 张国庆's avatar 张国庆

修改 3.0语法
上级 e6165a8f
...@@ -12,14 +12,14 @@ publish_to: none ...@@ -12,14 +12,14 @@ publish_to: none
environment: environment:
# sdk: '>=2.8.0 <3.0.0' # sdk: '>=2.8.0 <3.0.0'
sdk: '>=2.12.0-259.8.beta <3.0.0' sdk: '>=2.17.0 <3.0.0'
dependencies: dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
screenshot: screenshot:
path: ../ path: ../
cupertino_icons: ^0.1.2 cupertino_icons: ^1.0.2
# image_gallery_saver: ^1.1.0 # image_gallery_saver: ^1.1.0
dev_dependencies: dev_dependencies:
......
...@@ -117,7 +117,7 @@ class ScreenshotController { ...@@ -117,7 +117,7 @@ class ScreenshotController {
static Future<ui.Image> widgetToUiImage( static Future<ui.Image> widgetToUiImage(
Widget widget, { Widget widget, {
Duration delay: const Duration(seconds: 1), Duration delay = const Duration(seconds: 1),
double? pixelRatio, double? pixelRatio,
BuildContext? context, BuildContext? context,
Size? targetSize, Size? targetSize,
...@@ -149,7 +149,7 @@ class ScreenshotController { ...@@ -149,7 +149,7 @@ class ScreenshotController {
final RenderRepaintBoundary repaintBoundary = RenderRepaintBoundary(); final RenderRepaintBoundary repaintBoundary = RenderRepaintBoundary();
Size logicalSize = targetSize ?? Size logicalSize = targetSize ??
ui.window.physicalSize / ui.window.devicePixelRatio; // Adapted View.of(context!).physicalSize / ui.window.devicePixelRatio; // Adapted
Size imageSize = targetSize ?? ui.window.physicalSize; // Adapted Size imageSize = targetSize ?? ui.window.physicalSize; // Adapted
assert(logicalSize.aspectRatio.toStringAsPrecision(5) == assert(logicalSize.aspectRatio.toStringAsPrecision(5) ==
...@@ -157,13 +157,13 @@ class ScreenshotController { ...@@ -157,13 +157,13 @@ class ScreenshotController {
.toStringAsPrecision(5)); // Adapted (toPrecision was not available) .toStringAsPrecision(5)); // Adapted (toPrecision was not available)
final RenderView renderView = RenderView( final RenderView renderView = RenderView(
window: ui.window,
child: RenderPositionedBox( child: RenderPositionedBox(
alignment: Alignment.center, child: repaintBoundary), alignment: Alignment.center, child: repaintBoundary),
configuration: ViewConfiguration( configuration: ViewConfiguration(
size: logicalSize, size: logicalSize,
devicePixelRatio: pixelRatio ?? 1.0, devicePixelRatio: pixelRatio ?? 1.0,
), ), view: View.of(context!),
); );
final PipelineOwner pipelineOwner = PipelineOwner(); final PipelineOwner pipelineOwner = PipelineOwner();
......
...@@ -4,7 +4,7 @@ version: 1.3.0 ...@@ -4,7 +4,7 @@ version: 1.3.0
homepage: https://github.com/SachinGanesh/screenshot homepage: https://github.com/SachinGanesh/screenshot
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.17.0 <3.0.0'
# sdk: '>=2.12.0-259.8.beta <3.0.0' # sdk: '>=2.12.0-259.8.beta <3.0.0'
# analyzer: # analyzer:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论