I've got row with some text on the left and right side of it. center is expanded so both texts are located at left, right corners.
Row( children: [ Text('left Text'),
Expanded(child: Text('')),
Text('right Text'
),
]),
Now I I wrap this Row in a Container with color then the whole row will get background color.
Container( color: Colors.green,
child:MY_ROW()
)
What I want now is to put some background color not on the entire row but controllable part of it, to make a progress bar. is that possible ? Also if this progress bar could be animated that would be a plus :)