ListTile( title: Text("This is my ListTile"), trailing: Wrap( spacing: 12, // space between two icons children: <Widget>[ Icon(Icons.call), // icon-1 Icon(Icons.message), // icon-2 ], ), )