Skip to content

Instantly share code, notes, and snippets.

@techpotatoes
Created April 18, 2020 14:07
Show Gist options
  • Save techpotatoes/7e825af5076d7e0801fc435422e498ad to your computer and use it in GitHub Desktop.
Save techpotatoes/7e825af5076d7e0801fc435422e498ad to your computer and use it in GitHub Desktop.
Flutter development series - part4
void main()...
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: BlocProvider<LoyaltyBloc>(
create: (BuildContext context) => LoyaltyBloc(
loyaltyCardRepository: LoyaltyCardRepository(LoyaltyCardBox())),
child: LoyaltyListPage(),
),
);
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment