How to slide in and out from the bottom in React Native?

前端 未结 3 2061
天命终不由人
天命终不由人 2020-12-14 08:30

In React Native iOS, I would like to slide in and out of a like in the following picture.

In the following example, when a button is pressed, the Payment Inf

3条回答
  •  忘掉有多难
    2020-12-14 08:36

    I know it is a little bit late, but thought it might be useful for someone. You should try out a component called rn-sliding-out-panel. It works awesomely. https://github.com/octopitus/rn-sliding-up-panel

     this._panel = c}
        visible={ture|false /*If you want it to be visible on load*/}
    >
    

    And you can even open it from an external button:

    
    

    You can install it via npm: sudo npm install rn-sliding-out-panel --save on your react-native root directory.


    I hope it helps someone :D

提交回复
热议问题