hello i am unable to center the row in a card by using crossaxisalignment even
if i cover the row with center widget kindly help...
Card(
elevation: 4.0, // Card elevation
child: Center(
child: Padding(
padding: EdgeInsets.all(16.0), // Padding inside the card
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.center, // Align children in the middle vertically
children: <Widget>[
Column(
children: <Widget>[
Text(
'Following',
style: TextStyle(
fontSize: 18.0,
fontWeight: FontWeight.bold,
),
),
Text(
'5000',
style: TextStyle(
fontSize: 16.0,
),
),
],
),
Column(
children: <Widget>[
Text(
'Following',
style: TextStyle(
fontSize: 18.0,
fontWeight: FontWeight.bold,
),
),
Text(
'5000',
style: TextStyle(
fontSize: 16.0,
),
),
],
),
Column(
children: <Widget>[
Text(
'Following',
style: TextStyle(
fontSize: 18.0,
fontWeight: FontWeight.bold,
),
),
Text(
'5000',
style: TextStyle(
fontSize: 16.0,
),
),
],
),
],
),
By adding mainAxisAlignment: MainAxisAlignment.center, in columns you should achieve your results.