recently I am moving on the Flutter , I am making one list but stuck with Overflow error even ellipsis is there.
My requirement is Icon must be stick with text so I cant use expanded.
>Solution :
Wrap Text widget with Expanded or Flexible because over only works when it’s parent has Expanded or Flexible .
or try this.
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expanded(
child: Row(
children: const [
Flexible(
child: Text(
///your text here
'Yearly',
style: TextStyle(overflow: TextOverflow.ellipsis),
),
),
SizedBox(width: 10),
Icon(Icons.timer),
],
),
),
const SizedBox(width: 10),
Text('2', style: FontStyleUtility.blackInter18W600)
],
)

