Skip to content

Instantly share code, notes, and snippets.

@timbergus
Created June 11, 2019 10:26
Show Gist options
  • Save timbergus/873c0ec3a67c336be342a451297c2380 to your computer and use it in GitHub Desktop.
Save timbergus/873c0ec3a67c336be342a451297c2380 to your computer and use it in GitHub Desktop.
child: RaisedButton(
onPressed: () => Navigator.pushNamed(context, '/view_b', arguments: {
'message': 'Hello User 😄',
}),
color: Colors.green,
child: Text(
'Goto View B',
style: TextStyle(
color: Colors.white,
),
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment