Skip to content

Instantly share code, notes, and snippets.

@Wizpna
Last active September 16, 2021 15:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Wizpna/2965e5b56ac67428ab41ebb4685a67e8 to your computer and use it in GitHub Desktop.
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
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