Spike
Spike
Thanks for you sample code. @eduardoflorence I edited your second `TabView`'s using a `ListView`. When I switched to this tab, scroll the list, then switched to first tab, then back....
@maares Thanks. Now I use a simple `KeepAliveWrapper` as a work around. ```dart TabBarView( controller: controller.tabController, children: const [ KeepAliveWrapper(child: CarPage()), KeepAliveWrapper(child: BikePage()), ], ) ``` My `KeepAliveWrapper`: ```dart class...
Facing this in both dev and release mode
4 years later, is there anything to update?