I am using auto_route in my app. So I don't use a routes field in the MaterialApp widget. Instead routes are defined and generated separately by the auto_route package.
Can I make a statefulWidget and use WebviewScaffold inside the build method and push that page? Would this work or do I have to use the routes field?
I am using auto_route in my app. So I don't use a
routes
field in theMaterialApp
widget. Instead routes are defined and generated separately by the auto_route package.Can I make a
statefulWidget
and useWebviewScaffold
inside the build method and push that page? Would this work or do I have to use theroutes
field?