From 485db404e569b55c353954280457bfcac79778b2 Mon Sep 17 00:00:00 2001 From: natsuk4ze Date: Fri, 17 Nov 2023 18:34:34 +0900 Subject: [PATCH 1/2] Update gal plugin description --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index ab71cc08..f1371f7c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: gal -description: How to Save Image/Video to the Photo Gallery in Flutter | How to Save Media to Photo Gallery in Flutter | Image & Video Gallery Saver Plugin | Flutter Media Saver +description: Flutter Plugin for Saving Image/Video to the Photo Gallery | How to Save Image/Video to the Photo Gallery in Flutter version: 2.1.3 homepage: https://pub.dev/packages/gal repository: https://github.com/natsuk4ze/gal From fd563bdd2e1630c3712476903bed99b49782fc1d Mon Sep 17 00:00:00 2001 From: natsuk4ze Date: Fri, 17 Nov 2023 18:35:00 +0900 Subject: [PATCH 2/2] Refactor README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b56ef45..cb2437d3 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ await Gal.requestAccess(); ```dart // Save Image with try-catch try { - await Gal.putImage($imagePath); + await Gal.putImage('$filePath'); } on GalException catch (e) { log(e.type.message); }