我怎么能在flutter elevatedbutton中设置宽度,这是我的代码,谢谢
ElevatedButton(
style: ButtonStyle(
shape: MaterialStateProperty.all<
RoundedRectangleBorder>(
RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(18.0),
side: BorderSide()))),
onPressed: () {},
child: Text(
"Baca",
style: TextStyle(color: Colors.white),
),
),
3条答案
按热度按时间h4cxqtbf1#
将其 Package 在
Container
中,因此子节点也获得父节点的大小。0vvn1miw2#
请尝试以下ElevatedButton宽度和高度的答案:
atmip9wb3#
最好像这样使用
SizedBox
: