Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

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
    ],
  ),
)
 
PREVIOUS NEXT
Tagged: #trailing #flutter #icons #flutter
ADD COMMENT
Topic
Name
7+4 =