Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Created December 8, 2019 11:20
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 fabiomsr/50e0d30179344f14401f02e17e6a016a to your computer and use it in GitHub Desktop.
Save fabiomsr/50e0d30179344f14401f02e17e6a016a to your computer and use it in GitHub Desktop.
class EventsPage extends StatelessWidget {
static const String routeName = '/events';
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: AppBar(
title: Text("Events"),
),
drawer: AppDrawer(),
body: Center(child: Text("Events")));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment