This is what I want to achieve.
Asked
Active
Viewed 662 times
-1

The Chinky Sight
- 349
- 4
- 19

Apeksh Agarwal
- 1
- 1
-
Please prefer reading this [question](https://stackoverflow.com/questions/59856235/how-to-show-progress-bar-for-delivery-updation-in-flutter) – The Chinky Sight Oct 03 '21 at 12:31
1 Answers
0
Use a Row widget just below the progress indicator, make sure that both of them have same width. Set Main Axis Alignment of that row to 'MainAxisAlignment.spaceBetween' and add all those titles as children of the row. Here is code snippet to give you an idea:
Column(
children: [
YourProgressWidget(),
// add any sizedBox for spacing
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
// Place your text titles here
]),
]),
Make sure that the number of children in the Row should be equal to number of segments in your progress bar.

Rashid Wassan
- 664
- 5
- 13