Replies: 1 comment 2 replies
-
I'm facing a similar issue. You could switch to moving to |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have about 5-10 sheets for different settings and I imagine this is not abnormal.
Should I be conditionally rendering the sheets like this? Though this makes outro animation difficult.
{showSheet && <BottomSheet/>}
Or should we be managing our sheets purely with Snap points?
something like?
<BottomSheet index={showSheet ? 0 : -1 } />
In this case, I'm worried that we are adding a huge amount of unnecessary data in the VDom? Also I see shadows on the bottom from all the cards :(.
How do you manage a lot of sheets?
Beta Was this translation helpful? Give feedback.
All reactions