提交 593ff853 authored 作者: ritheshSalyan's avatar ritheshSalyan

Release 1.2.3

上级 5f6bf2eb
## [1.2.3] - 15/07/2021
* Support Inheriting Theme for Invisible Widget
## [1.2.2] - 14/07/2021 ## [1.2.2] - 14/07/2021
* Add pixelRatio to captureFromWidget @hashirshoaeb * Add pixelRatio to captureFromWidget @hashirshoaeb
* Fix assertion issue * Fix assertion issue
## [1.2.1] - 13/06/2021 ## [1.2.1] - 13/06/2021
* Removal of compilation warning @yanivshaked * Removal of compilation warning @yanivshaked
......
...@@ -100,7 +100,25 @@ screenshotController.captureAndSave( ...@@ -100,7 +100,25 @@ screenshotController.captureAndSave(
If you want to save captured image to Gallery, Please use https://github.com/hui-z/image_gallery_saver If you want to save captured image to Gallery, Please use https://github.com/hui-z/image_gallery_saver
Example app uses the same to save screenshots to gallery. Example app uses the same to save screenshots to gallery.
### Note: ---
##Sharing Captured Images
```dart
await _screenshotController.capture(delay: const Duration(milliseconds: 10)).then((Uint8List image) async {
if (image != null) {
final directory = await getApplicationDocumentsDirectory();
final imagePath = await File('${directory.path}/image.png').create();
await imagePath.writeAsBytes(image);
/// Share Plugin
await Share.shareFiles([imagePath.path]);
}
});
```
---
## Note:
Captured image may look pixelated. You can overcome this issue by setting value for **pixelRatio** Captured image may look pixelated. You can overcome this issue by setting value for **pixelRatio**
>The pixelRatio describes the scale between the logical pixels and the size of the output image. It is independent of the window.devicePixelRatio for the device, so specifying 1.0 (the default) will give you a 1:1 mapping between logical pixels and the output pixels in the image. >The pixelRatio describes the scale between the logical pixels and the size of the output image. It is independent of the window.devicePixelRatio for the device, so specifying 1.0 (the default) will give you a 1:1 mapping between logical pixels and the output pixels in the image.
...@@ -128,5 +146,5 @@ screenshotController.capture(delay: Duration(milliseconds: 10)) ...@@ -128,5 +146,5 @@ screenshotController.capture(delay: Duration(milliseconds: 10))
``` ```
--- ---
## Known Issues ## Known Issues
- **`Platform Views are not supported. (Example: Google Maps, Camera etc)`** - **`Platform Views are not supported. (Example: Google Maps, Camera etc)`[issue](https://github.com/flutter/flutter/issues/83856)**
--- ---
\ No newline at end of file
差异被折叠。
// import 'dart:io';
// import 'dart:typed_data';
// import 'file_manager.dart';
// PlatformFileManager getFilePicker() => PlatformFilePickerMobile();
// class PlatformFilePickerMobile with PlatformFileManager {
// @override
// Future<String> saveFile(Uint8List fileContent, String path, {String name}) async{
// name = name??"${DateTime.now().toIso8601String()}.png";
// File file = File("$path/$name");
// file.writeAsBytesSync(fileContent);
// return file.path;
// }
// }
name: screenshot name: screenshot
description: Flutter Screenshot Package (Runtime). Capture any Widget as an image. description: Flutter Screenshot Package (Runtime). Capture any Widget as an image.
version: 1.2.2 version: 1.2.3
homepage: https://github.com/SachinGanesh/screenshot homepage: https://github.com/SachinGanesh/screenshot
environment: environment:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论