Interfaces
ShowModalOptions
ShowModalOptions
interfaceShowModalOptions {
android: {
cancelable?:boolean
};
animated:boolean;
cancelable:boolean;
closeCallback: (...args:any[]) =>void;
context:any;
fullscreen:boolean;
ios: {
height?:number
presentationStyle?:any
};
stretched:boolean;
transition:ModalTransitionType;
}
Summary β
Properties β
android β
animated β
An optional parameter specifying whether to show the modal view with animation.
cancelable β
An optional parameter specifying whether the modal view can be dismissed when not in full-screen mode.
closeCallback β
context β
Any context you want to pass to the modally shown view. This same context will be available in the arguments of the shownModally event handler.
fullscreen β
An optional parameter specifying whether to show the modal view in full-screen mode.
ios β
An optional parameter that specify options specific to iOS as an object.
stretched β
An optional parameter specifying whether to stretch the modal view when not in full-screen mode.
transition β
An optional custom transition effect
- Previous
- SharedTransitionConfig
- Next
- ShownModallyData