Search code examples
flutterwidgettrailing

How i ca fix this error (A RenderFlex overflowed by 104 pixels on the bottom.)


enter image description here

This (Trailing inside ListTile) In Flutter

trailing: Column(
            children: <Widget>[
              new IconButton(icon: Icon(Icons.arrow_drop_up), onPressed: (){}),

              Text("Hello"),
              new IconButton(icon: Icon(Icons.arrow_drop_down), onPressed: (){}),


            ],
          ),

Solution

  •  trailing: Column(
              mainAxisAlignment: MainAxisAlignment.start,
              mainAxisSize: MainAxisSize.min,
              children: <Widget>[
                Expanded(
                      child: new IconButton(
          padding: EdgeInsets.zero,
          icon: Icon(Icons.arrow_drop_up), onPressed: (){}),
                ),
    
                Expanded(child: Text("Hello")),
                Expanded(child: new IconButton(icon: Icon(Icons.arrow_drop_down), onPressed: (){})),
    
    
              ],
            ),