Skip to content

Instantly share code, notes, and snippets.

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