hacktons / convex_bottom_bar

A Flutter package which implements a ConvexAppBar to show a convex tab in the bottom bar. Theming supported.
https://bar.hacktons.cn
Apache License 2.0
791 stars 147 forks source link

Error: Member not found: 'DefaultTabController.maybeOf'. return widget.controller ?? DefaultTabController.maybeOf(context); #197

Closed marentwickler closed 1 year ago

marentwickler commented 1 year ago

convex_bottom_bar-3.2.0/lib/src/bar.dart:478:54: Error: Member not found: 'DefaultTabController.maybeOf'. return widget.controller ?? DefaultTabController.maybeOf(context);

code with the dependencies convex_bottom_bar: ^3.2.0. The code show before is for Bottom.dart and main.dart. Is there any problem with android and the package ?

marentwickler commented 1 year ago

Fixed: change the Code on:convex_bottom_bar-3.2.0/lib/src/bar.dart:478 from : return widget.controller ?? DefaultTabController.maybeOf(context); to: return widget.controller ?? DefaultTabController.of(context); .