manufont / react-swipeable-bottom-sheet

A swipeable material's bottom sheet implementation, using react-swipeable-views
MIT License
131 stars 36 forks source link

How to fix header of the sheet? #13

Closed happimaker closed 4 years ago

happimaker commented 4 years ago

I want to fix header so that I can control the header swipeable after I opened the sheet and scrolled down.

nghiepdev commented 4 years ago

@happimaker You can do it with custom css

.ReactSwipeableBottomSheet--open > div:first-child {
  position: sticky;
  top: 0;
}