Last active
September 16, 2021 15:15
-
-
Save Wizpna/2965e5b56ac67428ab41ebb4685a67e8 to your computer and use it in GitHub Desktop.
How I Built a Photo Editing App with 80 lines of code using Flutter and IMG.LY
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
imgFromGallery() async { | |
final image = await ImagePicker().pickImage(source: ImageSource.gallery); | |
if (image != null) { | |
setState(() { | |
imglyEditor(image.path); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment