Skip to content

Instantly share code, notes, and snippets.

@machinescream
Created September 15, 2019 19:27
Show Gist options
  • Save machinescream/ca683c3eaa2738ad4952a5727675a7db to your computer and use it in GitHub Desktop.
Save machinescream/ca683c3eaa2738ad4952a5727675a7db to your computer and use it in GitHub Desktop.
class BlocInjector extends InheritedWidget {
BlocInjector({
Key key,
@required Widget child,
@required this.bloc,
}) : super(key: key, child: child);
final Bloc bloc;
static BlocInjector of(BuildContext context) =>
context.inheritFromWidgetOfExactType(BlocInjector);
@override
bool updateShouldNotify(BlocInjector oldWidget) => oldWidget.bloc != bloc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment