DEV Community

Satya Routray
Satya Routray

Posted on

Answer: flutter remove back button on appbar

I believe the solutions are the following

You actually either:

  • Don't want to display that ugly back button ( :] ), and thus go for AppBar(...,automaticallyImplyLeading: false,...);

  • Don't want the user to go back - replacing current view - and thus go for Navigator.pushReplacementNamed(## your routename here ##)

Top comments (0)