createModalStack
Last updated
Was this helpful?
Last updated
Was this helpful?
This is probably the core feature of the library (especially 🤓). createModalStack
is a function that's going to turn your config into a usable stack.
Config
This is an object in which you match a modal name with a modal config. Based on these configs, React Native Modalfy will know what to render and how.
animateInConfig
Animation in configuration object (only easing
and duration
). Defaults to: animateInConfig: { easing: Easing.inOut(Easing.exp), duration: 450 }
.
animateOutConfig
Animation out configuration object (only easing
and duration
). Defaults to: animateOutConfig: { easing: Easing.inOut(Easing.exp), duration: 450 }
.
containerStyle
Styles applied to the View
wrapping your modal component (if defined via Config
) or all of them (if defined via Options
).
modal
React component that will be rendered when you'll open the modal.
position
Vertical alignment of the modal component. Defaults to 'center'
.
transitionOptions
Set transitions based on the animated value React Native Modalfy uses under the hood. Based on the animated value you'll receive you'll be able to setup custom interpolations that will be applied to your modal
component.
Options
The modal options is an object in which you'll setup options that'll be share amongst items inside your modal config.
backdropOpacity
Number between 0
and 1
that defines the backdrop opacity. Defaults to 0.6
.
backButtonBehavior
Behavior you'd like to see when a user pressed the back button on Android:
'clear'
means that you want the whole stack to be cleared, whatever the amount of modals opened
'pop'
means that you only want the modal at the top of the stack to be removed
'none'
means that you don't want anything to happened, ie: user has to make an action inside that modal before you programmatically remove it via closeModal
.
Defaults to 'pop'
.
Note that the inputRange
corresponds to the modal position in your stack! 0
will translate to "the modal is not rendered", 1
to "this modal is on top of the stack/the only item in the stack", 2
to "this modal is the 2nd item in the stack", etc. Coupled with & , you really have a fine-grained control over your modals animation states! Check out to see what's possible with React Native Modalfy.
, , , are exactly the same as seen in section above.