Reputation: 286
I want to know how can i add frame to a photo.i am trying to make a photo frame app where user will pick photo from gallery and can be able to add frame to the picture.
Upvotes: 0
Views: 2345
Reputation: 1857
I do not know if it's what you're looking for but I think you could use this plugin: https://pub.dartlang.org/packages/image_picker
var image = await ImagePicker.pickImage(source: ImageSource.gallery);
Instead of taking a photo, select the image gallery
Upvotes: 1