Skip to content

Instantly share code, notes, and snippets.

@Vanethos
Created May 6, 2019 20:56
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 Vanethos/ec0747babf1b440a6e0b9a2df6fda6ca to your computer and use it in GitHub Desktop.
Save Vanethos/ec0747babf1b440a6e0b9a2df6fda6ca to your computer and use it in GitHub Desktop.
class _MyHomePageState extends BaseState<MyHomePage> with BasicPage, ErrorHandlingMixin {
//...
@override
Widget fab() => FloatingActionButton(
child: Icon(Icons.error),
onPressed: () => widget.bloc.errorSink.add("A new error!"),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment