Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created September 3, 2018 04:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcinusX/c1c7f62ff02e068b64ce6ae95bab1323 to your computer and use it in GitHub Desktop.
Save MarcinusX/c1c7f62ff02e068b64ce6ae95bab1323 to your computer and use it in GitHub Desktop.
Widget _buildFab() {
[...]
FloatingActionButton(
onPressed: () => Navigator
.of(context)
.push(FadeRoute(builder: (context) => TicketsPage())), //<-- Navigation
child: Icon(Icons.check, size: 36.0),
),
[...]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment