ScrollToHideBottomNavigationBar constructor

ScrollToHideBottomNavigationBar({
  1. Key? key,
  2. required ScrollController scrollController,
  3. Curve curves = Curves.fastLinearToSlowEaseIn,
  4. required Duration duration,
  5. required List<Widget> children,
})

Implementation

ScrollToHideBottomNavigationBar({
  Key? key,
  required this.scrollController,
  this.curves = Curves.fastLinearToSlowEaseIn,
  required this.duration,
  required this.children,
}) : super(key: key);