Tabview not updating with provider when switching between 2 tabs Tabview not updating with provider when switching between 2 tabs dart dart

Tabview not updating with provider when switching between 2 tabs


instead of FutureBuilder you should use Consumer

 return  Consumer<ChartModel>(          builder: (_, provider, __) {            return Container(child:Text(provider.data));                                   },        );