mcrovero / rubber

An elastic material bottom sheet implementation for Flutter.
BSD 2-Clause "Simplified" License
562 stars 88 forks source link

fix drag / scroll issue #17

Closed DK15 closed 5 years ago

DK15 commented 5 years ago

This PR fixes this issue.

Basically, user can drag the bottomsheet even when item 0 is listed which means the _drag is not null when user tries to perform drag. Hence, the assert _drag == null line was throwing error. I just removed that line and confirmed that dragging the bottomsheet opens the listview properly without throwing any errors in the console.

mcrovero commented 5 years ago

Thanks!