Skip to content

Instantly share code, notes, and snippets.

@SandroMaglione
Last active January 23, 2020 17:58
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 SandroMaglione/33be8573dee035689357a0ef0321f659 to your computer and use it in GitHub Desktop.
Save SandroMaglione/33be8573dee035689357a0ef0321f659 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'package:step_progress_indicator/step_progress_indicator.dart';
class ExampleStepProgressIndicator extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
// We will place the StepProgressIndicator in a column
],
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment