NathanWalker / nativescript-fancyalert

Fancy alerts for NativeScript.
Other
147 stars 38 forks source link

Multiple images in showImage #58

Closed NaviMarella closed 5 years ago

NaviMarella commented 5 years ago

Hi,

I am trying to show a fancy alert with multiple images, Is there a way to achieve this functionality.

NathanWalker commented 5 years ago

SLCAlertView is just an iOS UIViewController so you could grab it's instance like this:

const alert = TNSFancyAlert.createAlert();
alert.view.addSubView(SomeCustomUIView);
NathanWalker commented 5 years ago

On Android it's a bit more limited.