enesozturk/rn-swipeable-panel

Prevent close

Opened this issue · 3 comments

Is it possible to prevent the panel from completely closing?

I also want this, but based on prior messaging, it's not going to happen: #14

I am researching this now since there are too many issues with the library of the panel disappearing and then no longer being able to get the view back without quitting the application; which is obviously horrible UX.

Video:

RPReplay_Final1673564842.mov

I have achieved it like this
const closePanel = () => { setIsPanelActive(false); setTimeout(() => { openPanel(); }, 0) };