I would like to display the AsyncValue result from a Riverpod StatenotifierProvider in a TabControl. In a StatefulWidget I would have implemented the TabController like so:
class Screen extends StatefulWidget {
Screen({Key? key}) : super(key: key);
@override
State<Screen> createState() => _ScreenState();
}
class _ScreenState extends State<Screen> with TickerProviderStateMixin {
late TabController _tabController;
@override
void initState() {
super.initState();
_tabController = TabController(length: 2, vsync: this);
}
If I convert this widget to a ConsumerWidget I can no longer mix in the TickerProvider and if I stick with the StatefulWidget I don't have access to the ref and therby the provider.
Would appreciate you help!