Skip to content

Instantly share code, notes, and snippets.

@slamdon
Created February 23, 2020 12:56
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 slamdon/eeb7c13e82f39651429059ed611e57ef to your computer and use it in GitHub Desktop.
Save slamdon/eeb7c13e82f39651429059ed611e57ef to your computer and use it in GitHub Desktop.
MyApp
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: ChangeNotifierProvider.value(
value: CartProvider(),
child: HomePage(),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment