Skip to content

Instantly share code, notes, and snippets.

@felangel
Created July 9, 2019 02:47
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 felangel/f4839168802c5efa421b11b8ddfdd4b9 to your computer and use it in GitHub Desktop.
Save felangel/f4839168802c5efa421b11b8ddfdd4b9 to your computer and use it in GitHub Desktop.
[flutter_bloc_0.19.0] Nested BlocProviders
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return BlocProvider<BlocA>(
builder: (BuildContext context) => BlocA(),
child: BlocProvider<BlocB>(
builder: (BuildContext context) => BlocB(),
child: BlocProvider<BlocC>(
builder: (BuildContext context) => BlocC(),
child: ChildA(),
)
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment