3

这是当前AppBar代码:

AppBar(
  iconTheme: IconThemeData(
    color: Colors.black,
    size: 100 // This isn't performing any changes
  ),
  centerTitle: false,
  backgroundColor: Colors.white,
  title: Text(
    title,
    style: TextStyle(color: Colors.black87,

  ),
  elevation: 1.0,
);

当前尺寸属性IconThemeData不做任何改变。

4

2 回答 2

3

试试这个你需要使用leading

  • 在标题之前显示的小部件。

示例代码

 AppBar(
      title: new Text("Your Title"),
      leading: new IconButton(
        icon: new Icon(Icons.arrow_back,size: 50.0,),
        onPressed: () => {
          // Perform Your action here
        },
      ),
    );

输出

在此处输入图像描述

于 2019-12-26T11:45:21.757 回答
0

您可以使用Transform.scale小部件并用它包装IconButton。此小部件具有scale您可以根据需要设置的属性。下面的工作示例代码:

appBar: AppBar(
        leading: Transform.scale(
          scale: 2,
          child: IconButton(
          icon: Icon(Icons.arrow_back, color: Colors.black),
          onPressed: () {}
          )
        ),

  centerTitle: false,
  backgroundColor: Colors.white,
  title: Text(
    'test',
    style: TextStyle(color: Colors.black87,

  ),
//  elevation: 1.0,
)),

在此处输入图像描述

希望这能回答你的问题。

于 2019-12-26T14:04:39.187 回答