📜  mengganti warna background flutt - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:25.395000             🧑  作者: Mango

代码示例1
appBar: AppBar(  leading: IconButton(    icon: Icon(        Icons.arrow_back      ),      onPressed: () {        Navigator.of(context).pop();      }  ),  iconTheme: IconThemeData(    color: Colors.red, //change your color here  ),  backgroundColor: Colors.blue,  title: Text("Appbar", style: TextStyle(color: Colors.white),),),