如何在ListTile中的title和subtitle之间添加空格?
ListTile
title
subtitle
ListTile( title: Text(" xxxxxxxx"), subtitle: Text("From: to"), ),
0h4hbjxa1#
您可以将title的Text小部件封装到Padding小部件中,并传递您想要的间距paddingbottom,如下所示:
padding
bottom
ListTile( title: Padding( padding: const EdgeInsets.only(bottom: 15.0), child: Text("title"), ), subtitle: Text("Subtitle"), )
8ftvxx2r2#
ListTile( title: Padding( padding: const EdgeInsets.only(bottom: 10.0), child: Text(" xxxxxxxx"),, ), subtitle:Text("From: to"), )
eiee3dmh3#
你可以给予height属性,在Text样式中,在subtitle中添加,在title和subtitle之间添加空间。
ListTile( title: Text("xxxxx", style: TextStyle(fontSize: 18), ), subtitle: Text("xxxxxx" style: TextStyle(fontSize: 16, height: 2), ), ),
3条答案
按热度按时间0h4hbjxa1#
您可以将
title
的Text小部件封装到Padding小部件中,并传递您想要的间距padding
bottom
,如下所示:8ftvxx2r2#
eiee3dmh3#
你可以给予height属性,在Text样式中,在subtitle中添加,在title和subtitle之间添加空间。