Skip to content

Instantly share code, notes, and snippets.

@Dev-Owl
Created April 5, 2021 10:49
Show Gist options
  • Save Dev-Owl/1bdbd4de9baf6bcc677bbd28f7c46b11 to your computer and use it in GitHub Desktop.
Save Dev-Owl/1bdbd4de9baf6bcc677bbd28f7c46b11 to your computer and use it in GitHub Desktop.
class CaladriusBootstrap extends StatelessWidget {
final BootCompleted bootCompleted;
const CaladriusBootstrap(this.bootCompleted, {Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return BootStrap(
[
LoginBootStep(),
],
bootCompleted,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment