xxxxxxxxxx
Flexible(
child: Column(
children: [
FittedBox(
fit: BoxFit.scaleDown,
child: Text(
"M3",
style: TextStyle(
fontSize: 16,
color: Colors.white,
overflow: TextOverflow.ellipsis),
),
),
FittedBox(
fit: BoxFit.scaleDown,
child: Text(
"Mateen",
style: TextStyle(
fontSize: 16,
color: Colors.white,
overflow: TextOverflow.ellipsis),
),
),
],
),
)