Skip to content

Instantly share code, notes, and snippets.

@becek2n
Created May 8, 2020 16:17
Show Gist options
  • Save becek2n/152859b00e9a94fe922ad71efec237e3 to your computer and use it in GitHub Desktop.
Save becek2n/152859b00e9a94fe922ad71efec237e3 to your computer and use it in GitHub Desktop.
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
final bloc = StepperBloc();
return BlocProvider(
bloc: bloc,
child: Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: StepperView(),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment