1
đ Pushes & Launches
2
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
đ Flutter_Extend Version 0.3.0 is now live! See our changelog for details.
Master routing with one-line push and pop methods, eliminating verbose MaterialPageRoute calls and making your routing declarative.
await context.push(const ProfileScreen());
context.pushReplacement(const HomeScreen());
context.pushNamed('/settings', arguments: {'id': 123});
popScreen for consistency).IconButton(onPressed: context.pop, icon: Icon(Icons.close));
Navigator.pop).context.popScreen();
context.popUntilRoot();
Was this page helpful?
