Answers for "trailing flutter with 2 icons flutter"

1

trailing flutter with 2 icons flutter

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
    ],
  ),
)
Posted by: Guest on April-28-2022

Code answers related to "trailing flutter with 2 icons flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language