rIIh / expandable-bottom-bar

Expandable bottom app bar widget for Flutter SDK
MIT License
108 stars 27 forks source link

Make use of ChangeNotifier #8

Closed codekeyz closed 4 years ago

codekeyz commented 5 years ago

Ensure that registered listeners on the BottomBarController are called.

_bottomBarController = BottomBarController(
      vsync: this,
      snap: true,
      dragLength: 200,
    )..addListener(() => print('This fires up anytime ButtomBar is opened or closed '));