skip to Main Content

How to have ListTile info appear on the same vertical line? – Flutter

I have a ListTile built with following code: child: ListTile( leading: Padding( padding: EdgeInsets.only(top: 4, left: 12, bottom: 4), child: Text(department, style: TextStyle(color: Colors.white)), ), contentPadding: EdgeInsets.only(top: 4, left: 12, bottom: 4), title: Column( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.start, children: […

VIEW QUESTION
Back To Top
Search