wayne900204 / vertical_scrollable_tabview

A Flutter plugin which synchronize a ScrollView and a custom tab view.
https://pub.dev/packages/vertical_scrollable_tabview
MIT License
43 stars 27 forks source link

fix: tab controller double dispose #23

Closed Michsior14 closed 1 year ago

Michsior14 commented 1 year ago

Currently the view is disposing provided TabController even though it's not owning it, which leads (even in examples) to double dispose call error. This resolves it by passing the dispose call responsibility to the user, but removing custom listener added on initialization.

wayne900204 commented 1 year ago

thanks for your contribution.