I am building a quiz app using Flutter and relying on provider to update the UI. My widget tree has two main branches. One that relates to menu and the other game loop.
Currently I am using a Multiprovider for the screens/branch that pertain to the game loop. I would prefer to avoid using provider at MaterialApp level (ie very top of widget tree). However I am having error messages on some consumers of the game loop. I assume that scope could be the source of the issue.
Is there any widget that could encapsulate my game loop (consisting of multiple screens/scaffolds) below material app? Or another way to wrap between Scaffold and MaterialApp while using provider?