Far*_*rwa 4 android dart flutter flutter-appbar
这是当前的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,
);
Run Code Online (Sandbox Code Playgroud)
当前尺寸属性不做IconThemeData任何改变。
尝试一下你需要使用的leading
示例代码
AppBar(
title: new Text("Your Title"),
leading: new IconButton(
icon: new Icon(Icons.arrow_back,size: 50.0,),
onPressed: () => {
// Perform Your action here
},
),
);
Run Code Online (Sandbox Code Playgroud)
输出