Skip to content

Instantly share code, notes, and snippets.

View Wizpna's full-sized avatar
👨‍💻
remote

Promise Amadi Wizpna

👨‍💻
remote
View GitHub Profile
@Wizpna
Wizpna / main.dart
Last active September 16, 2021 15:15
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);
});
}
}
@Wizpna
Wizpna / main.dart
Last active September 23, 2021 23:38
How I Built a Photo Editing App with 80 lines of code using Flutter and IMG.LY
void imglyEditor(image) async {
await PESDK.openEditor(image: image);
}