I'm trying to get the text to wrap under the dog type, I tried to wrap the text, flexible but it's not working it's in a row not sure why it's not working here is my code
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
const Padding(
padding: EdgeInsets.only(right: 8.0, bottom: 4.0),
child: FaIcon(
FontAwesomeIcons.cubes,
size: 24,
color: primaryColor,
),
),
const Text(
'Dog Type: ',
style: AppStyles.dogProfileBodyLabelStyle,
overflow: TextOverflow.ellipsis,
),
Text(
dogInfo.dogType!.join(", "),
style: AppStyles.dogProfileBodyTextStyle,
maxLines: 5,
softWrap: true,
overflow: TextOverflow.ellipsis,
),
],
),
],
),
To be clear I want it to wrap under the Dog Type, not like the following