Skip to content

Instantly share code, notes, and snippets.

@FabDuarte
Created October 4, 2020 00: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 FabDuarte/20eb3d10a5d7ba90280edda450481cdb to your computer and use it in GitHub Desktop.
Save FabDuarte/20eb3d10a5d7ba90280edda450481cdb to your computer and use it in GitHub Desktop.
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Drawer menu by Asapdevelopers',
theme: ThemeData(
primarySwatch: Colors.red,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(title: 'Menu by Asapdevelopers'),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment