Reputation: 1052
In my flutter app, I use TextOverflow.clip to wrap text. But it shows me screen overflowed by some pixel. Here is my Code example screenshot:
Upvotes: 1
Views: 132
Reputation: 4763
Try this
Row(
children: [
SizedBox(
//...
),
Padding(
padding: EdgeInsets.only(
//...
),
//...
),
Expanded(
child: Column(
children: [
//...
],
),
),
],
),
Upvotes: 1