Skip to content

Instantly share code, notes, and snippets.

@emostar
Last active January 21, 2024 18:39
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 emostar/3139de339006e0124cfdec3e81782805 to your computer and use it in GitHub Desktop.
Save emostar/3139de339006e0124cfdec3e81782805 to your computer and use it in GitHub Desktop.
// Add this to your Scaffold in dashboard.dart
floatinActionButton: FloatingActionButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => NewRecording()),
);
},
child: Icon(Icons.add),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment