如何改变文字的大小
How to change the size of the text
如何更改我的 ListTile
.
的文本和图像大小
child: ListTile(
title: Center(
child: Text(infoBank[PicNumber].title),
),
textColor: Colors.white,
),
),
),
),
),
),
child: Container(
margin: EdgeInsets.fromLTRB(10, 20, 10, 20),
decoration: BoxDecoration(
border: Border.all(
width: 2,
color: Colors.grey.shade700,
),
),
height: 350,
width: 350,
child: ListTile(
leading: infoBank[PicNumber].image,
),
),
对于文本使用,文本样式和您可以通过 FontWeight 和其他属性找到字体大小,要增加图像的大小,请将其放入具有一定高度和宽度的容器中。
要更改文字大小,请使用 style
属性
Text(
infoBank[PicNumber].title,
style: TextStyle(fontSize: font_size_value),
),
要更改图像大小,请使用 Container
包裹它并使用 height
和 width
属性
Container(
height: height_value,
width: width_value,
child: infoBank[PicNumber].image,
),
如何更改我的 ListTile
.
child: ListTile(
title: Center(
child: Text(infoBank[PicNumber].title),
),
textColor: Colors.white,
),
),
),
),
),
),
child: Container(
margin: EdgeInsets.fromLTRB(10, 20, 10, 20),
decoration: BoxDecoration(
border: Border.all(
width: 2,
color: Colors.grey.shade700,
),
),
height: 350,
width: 350,
child: ListTile(
leading: infoBank[PicNumber].image,
),
),
对于文本使用,文本样式和您可以通过 FontWeight 和其他属性找到字体大小,要增加图像的大小,请将其放入具有一定高度和宽度的容器中。
要更改文字大小,请使用 style
属性
Text(
infoBank[PicNumber].title,
style: TextStyle(fontSize: font_size_value),
),
要更改图像大小,请使用 Container
包裹它并使用 height
和 width
属性
Container(
height: height_value,
width: width_value,
child: infoBank[PicNumber].image,
),