FilledStacks / flutter-tutorials

The repo contains the source code for all the tutorials on the FilledStacks Youtube channel.
MIT License
4.74k stars 1.76k forks source link

Can not solve the issue in BaseView #138

Closed shahriarhu closed 2 years ago

shahriarhu commented 2 years ago

Hi, I am very new to flutter and using this architecture for some while. The new flutter and package updates giving issue in this segment. Can someone please solve it and TIA

@override Widget build(BuildContext context) { return ChangeNotifierProvider( create: (context) => model, child: Consumer(builder: widget.builder), //The issue is here ); } }