网站设置在设备之间共享怎么开启,wordpress添加签名,wordpress取消手机版,哈尔滨地铁爱建站在ui设计中#xff0c;可能按钮会有不同的样式需要你来写出来#xff0c;所以按钮的不同样式#xff0c;应该是最基础的功能#xff0c;在这里我们赶紧学起来吧#xff0c;web端可能展示有问题#xff0c;需要优化#xff0c;但是基本样式还是出来了 我是将所有的按钮放…在ui设计中可能按钮会有不同的样式需要你来写出来所以按钮的不同样式应该是最基础的功能在这里我们赶紧学起来吧web端可能展示有问题需要优化但是基本样式还是出来了 我是将所有的按钮放在了Column中
Column(children: [ElevatedButton(onPressed: () {},child: Text(红色按钮),style: ButtonStyle(backgroundColor: MaterialStateProperty.all(Colors.red),foregroundColor: MaterialStateProperty.all(Colors.black),),),OutlinedButton(onPressed: () {}, child: Text(边框按钮)),ElevatedButton(onPressed: () {},child: Text(圆角),style: ButtonStyle(shape: MaterialStateProperty.all(RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)))),),ElevatedButton(onPressed: () {},child: Text(圆形),style: ButtonStyle(shape: MaterialStateProperty.all(CircleBorder())),),// 大一点的按钮Container(width: 90,height: 60,margin: EdgeInsets.only(bottom: 10),child: ElevatedButton(child: Text(大按钮),onPressed: () {},),),// 大圆形按钮SizedBox(width: 90,height: 60,child: ElevatedButton(onPressed: () {},child: Text(大圆形),style: ButtonStyle(shape: MaterialStateProperty.all(CircleBorder())),),)],)