maxs15 / react-native-modalbox

A <Modal/> component for react-native
MIT License
2.9k stars 506 forks source link

How to you disable bounce effect when opening the modal? #348

Open voue opened 3 years ago

voue commented 3 years ago

I've been looking all over and i cant find anything indicating how to disable the bounce effect.

Anyone?

PotaczekL commented 3 years ago

I've been looking all over and i cant find anything indicating how to disable the bounce effect.

Anyone?

@voue you can use easing={Easing.elastic(0)} prop.

ikotsov commented 2 years ago

@voue

It seems that you can use any Easing function you want judging from the description of the "easing" prop from the docs:

Easing function applied to opening modal animation

The only problem here is that, in case you write in Typescript and you have installed the types package, Typescript won't recognize this prop. It seems that it is not included in modal's prop types.