Text truncation - Flutter
In Flutter, you can avoid text truncation by removing all instances of maxLines
from your app. You should also set overflow
to TextOverflow.visible
where needed. Lastly, avoid using fixed values for any heights or widths.
Text(
'Avoid text truncation',
maxLines: REMOVE,
overflow: TextOverflow.visible
)