flutter widget小试

107 阅读1分钟

OutlinedButton设置圆角边框

OutlinedButton(
   style: OutlinedButton.styleFrom(
      shape: RoundedRectangleBorder(
         borderRadius: BorderRadius.circular(18.0),
      ),
      side: BorderSide(width: 2, color: Colors.green),
   ),
   onPressed: () {},
   child: Text('Button'),
)

图片设置圆角

blog.csdn.net/lqw20093111…

ClipRRect(//是ClipRRect,不是ClipRect
  borderRadius: BorderRadius.circular(50),
  child: Image.network(
    "https://desk-fd.zol-img.com.cn/t_s960x600c5/g6/M00/03/0E/ChMkKWDZLXSICljFAC1U9uUHfekAARQfgG_oL0ALVUO515.jpg",
    width: 100,
    height: 100,
    fit: BoxFit.cover,
  ),
)

设置背景颜色

Container(
  decoration: const BoxDecoration(
    color: Colors.white,
  ),
)

BottomNavigationBarItem 标签切换时刷新 或 不刷新页面

body使用: IndexedStack(index: 页面序号, children: 页面列表,), blog.csdn.net/weixin_4390…