设置icon
image.pngimage.png
设置button
image.pngicon和button一起使用
image.pngiconButton的使用
image.png所有代码:
class Home extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(
"标题",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 25,
),
),
backgroundColor: Colors.red[300],
centerTitle: true,
),
body: Center(
child: IconButton(
icon: Icon(Icons.print),
onPressed: () {
print("IconButton被点击了");
}),
// child: RaisedButton.icon(
// onPressed: () {
// print("RaisedButton.icon被点击了");
// },
// icon: Icon(Icons.account_circle),
// label: Text("RaisedButton.icon"),
// color: Colors.red,
// ),
// child: RaisedButton(
// onPressed: () {
// print("RaisedButton被点击了");
// },
// child: Text("按钮"),
// color: Colors.blueAccent[400],//这里设置的是按钮的背景色,改文字的背景色在Text("按钮")里面改
// ),
// child: Icon(
// Icons.access_alarm,//可以调用系统的一些图片
// color: Colors.amberAccent[300],
// size: 80,
// ),
),
);
}
}
网友评论