Skip to content

Commit b49a6b9

Browse files
committed
Release 1.2.1
1 parent d82a94b commit b49a6b9

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [1.2.1] - 13/06/2021
2+
* Removal of compilation warning @yanivshaked
3+
14
## [1.2.0] - 13/06/2021
25
* Add support for invisible widget capture
36

lib/src/platform_specific/file_manager/non_io.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class PlatformFileManagerWeb implements PlatformFileManager {
99
@override
1010
Future<String> saveFile(Uint8List fileContent, String path,
1111
{String? name}) async {
12-
throw UnsupportedError("File cannot be saved in current platform");
12+
throw UnsupportedError("File cannot be saved in current platform");
1313
// name = name ?? "${DateTime.now().microsecondsSinceEpoch}.png";
1414
// File file = await File("$path/$name").create(recursive: true);
1515
// file.writeAsBytesSync(fileContent);

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: screenshot
22
description: Flutter Screenshot Package (Runtime). Capture any Widget as an image.
3-
version: 1.2.0
3+
version: 1.2.1
44
homepage: https://github.com/SachinGanesh/screenshot
55

66
environment:

0 commit comments

Comments
 (0)