You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
On a PushButton the action is to open a new MacosScaffold with a ContentArea.
ContentArea( builder: (context, _) { return Center( child: PushButton( controlSize: ControlSize.regular, child: const Text('Go Back'), onPressed: () { Navigator.of(context).maybePop(); }, ), ); }, ),
In a current project i'm working with dynamic strings to create pages.
On Android and Ios i'm able to use them like this:
onPressed: () { Navigator.pushNamed( context, Tab1Item1.routeTab1Items, arguments: index); },
Any idea on how I can use this on the "return" of the ContentArea?
Beta Was this translation helpful? Give feedback.
All reactions