dynamicflutternavigatormaterialpageroute

Navigator/MaterialPageRoute Missing Arguments Error


I have a BUTTON ,here is some code:
enter image description here1

and i got the error like this:enter image description here

I've never met an error like this, but when i add the 'dynamic' like this: enter image description here


Solution

  • Try to change your Code and implement this :

    onPressed: () {
      Navigator.push(
        context,
        MaterialPageRoute(builder: (context) => Newfa()),
      );
    }