Created
December 8, 2019 11:20
-
-
Save fabiomsr/50e0d30179344f14401f02e17e6a016a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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