abuanwar072/E-commerce-Complete-Flutter-UI

Right overflow by x pixel at checkout screen

ozdeozgu opened this issue · 3 comments

Hello,
I installed the app to my Redmi Go phone (Android 8.1.0). I have got right overflow error at checkout screen. Screenshot is attached.
Thank you for this great app,
Best regards,
Ozgur!

RightOverflow

Hi, you need to add overflow to text(),
Exm:
Text(
"Text Here",
overflow: TextOverflow.ellipsis,
),

Or, to show the full text in two lines make the text() childe of Flexible() and remove the maxLines from Text()