In my flutter project, I've the code structure as:
Column(
children: [
Row(
children: statusViews,
),
Row(
children: textViews,
)
],
);
First row contains 4 Images with some Progress Bars in between them. And second row contains 4 Text for respective status images in first row. I want to center align text from second row relative to the image in first row.
So my basic question is: How can we align widget in one parent relative to a widget in another parent ?