progress_step 1.0.3 copy "progress_step: ^1.0.3" to clipboard
progress_step: ^1.0.3 copied to clipboard

Flutter package to customized step by step progress indicator

Getting started #

TODO: List prerequisites and provide or point to information on how to start using the package.

progress_step #

A reusable Flutter package that provides a clean and customizable step progress indicator.
It helps visualize order tracking, workflows, onboarding steps, or any process broken into multiple stages.


Features #

  • ✅ Step-based progress indicator with icons
  • ✅ Customizable status text for each step
  • ✅ Completed and pending state support
  • ✅ Works seamlessly with line_awesome_flutter (or any icon pack)
  • ✅ Lightweight and easy to use

Priview #

Example Image

Getting started #

Add the dependency to your pubspec.yaml:

dependencies:
  progress_step: ^1.0.0


Usage #

Stepprogress(
icons: const [
LineAwesomeIcons.anchor_solid,
LineAwesomeIcons.file_invoice_solid,
LineAwesomeIcons.box_open_solid,
LineAwesomeIcons.truck_moving_solid,
],
statustext: const [
"Order Placed",
"Invoice Generated",
"Order Packed",
"Out for Delivery",
],
status: const [true, true, false, false],
)

1
likes
120
points
10
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Flutter package to customized step by step progress indicator

License

MIT (license)

Dependencies

flutter

More

Packages that depend on progress_step