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: (){}),
],
),
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: (){})),
],
),