Search code examples
flutterflutter-layout

Flutter : add a space between title and subtitle in ListTile


How can I add a space between title and subtitle in ListTile ?

ListTile(
 title: Text(" xxxxxxxx"),
 subtitle: Text("From: to"),
),

Solution

  • You can wrap your Text widget of title into Padding widget and pass padding bottom of your desired gap like below :

    ListTile(
              title: Padding(
                padding: const EdgeInsets.only(bottom: 15.0),
                child: Text("title"),
              ),
              subtitle: Text("Subtitle"),
            )