I have an icon button with an icon and the title. The title of the button is coming from API which is a combination of two words or sometimes more than two words. i.e Chinese Restaurants or Mexican restaurants. Sometimes, it breaks the word Restaurant if the name is too big and other time it also breaks the name as well. So is there any way to fix that so that I can see the full name without breaking the word? I tried using it.
textOverflow: TextOverflow.ellipsis,
and also tried max line to two/three. but I am not getting the desired result.
on large screen its working fine i am having problems only on small devices.
Any help or suggestions on that? thanks.
IconButton(
icon: Icon(Icon.resutaurant),
title: restaurantname,
textOverflow: TextOverflow.ellipsis,
onPressed: () {},
),