Drag handler causes content to be pushed down
Drag handler enabled: (see the red border)
Drag handler hidden: (see the red border)
Hi @CarterSnich, yes, that seems like a good approach to me. What exact behaviour do you want to achieve, see if I can help you with that
As you can see, some part of the View is not visible if the drag handle is enabled. I want to keep the drag handle and the all parts of the View visible.
Well the drag handle takes its own space, unless you want the drag handle overlayed on the content?
Try setting the View height to 90%
Adding flex: 1 fixed it: (inside node_modules: bottom-sheet/src/components/bottomSheet/index.tsx)
style={[sepStyles?.paddingStyles, {
borderWidth: 1,
borderColor : "red",
flex: 1
}]}
Why it wasn't designed like that? Would it cause some unwanted issues?