PeterStaev / nativescript-photo-editor

🎨 Easily edit an image in your NativeScript app (crop, draw, etc)
Apache License 2.0
47 stars 15 forks source link

Does not seem to launch in iOS from a modal page. #6

Closed throwingdarts closed 6 years ago

throwingdarts commented 6 years ago

I created an app where a photo detail view opens in a modal along with a button to edit using this editor. All works as expected in android but can't get editor to launch in iOS from the modal. When I change to a standard page (not modal) everything works as expected.

PeterStaev commented 6 years ago

The editor itself is a modal. And since you cannot have more than one modal under iOS, there is nothing that can be done. So you have to use different layouts so that you do not have nested modals.

throwingdarts commented 6 years ago

That makes sense. Thanks.