Skip to content

Instantly share code, notes, and snippets.

@jacobaraujo7
Created May 11, 2019 02:15
Show Gist options
  • Save jacobaraujo7/37c350d30dd8f39f959c7aa2ee594d22 to your computer and use it in GitHub Desktop.
Save jacobaraujo7/37c350d30dd8f39f959c7aa2ee594d22 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 BlocProvider(
blocs: [
Bloc((i) => ValueBloc()),
],
child: MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: HomePage(),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment