Santo Shakil
Santo Shakil

Reputation: 1052

Screen Overflowed by some pixels in Flutter app even after use text overflow

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:

enter image description here

Upvotes: 1

Views: 132

Answers (1)

dm_tr
dm_tr

Reputation: 4763

Try this

Row(
  children: [
    SizedBox(
      //...
    ),
    Padding(
      padding: EdgeInsets.only(
        //...
      ),
      //...
    ),
    Expanded(
      child: Column(
        children: [
          //...
        ],
      ),
    ),
  ],
),

Upvotes: 1

Related Questions