Flutter 颤振:ListTile的前导字母而不是图标

Flutter 颤振:ListTile的前导字母而不是图标,flutter,flutter-layout,Flutter,Flutter Layout,我认为这张图片对我想要归档的内容不言自明: listile( //领先:Icon(Icons.attach_money),您可以使用PreferredSize,我正在测试和工作 PreferredSize( preferredSize: Size.fromHeight(100.0), // here the desired height child: Text("€", styl

我认为这张图片对我想要归档的内容不言自明:

listile(

//领先:Icon(Icons.attach_money),您可以使用PreferredSize,我正在测试和工作

PreferredSize(
                preferredSize: Size.fromHeight(100.0),
                // here the desired height
                child: Text("€", style: TextStyle(fontSize:30,height: 1.5),),
              )

谢谢你的回复。这很有效,但我想知道如何强制符号始终保持相同的宽度/字体大小(因此,如果它很长,大小应该更小)。有些货币使用一些字母,这会稍微破坏设计,在右侧添加更多填充
PreferredSize(
                preferredSize: Size.fromHeight(100.0),
                // here the desired height
                child: Text("€", style: TextStyle(fontSize:30,height: 1.5),),
              )