(摘) Flutter 代码收集

声明:内容源自网络,版权归原作者所有。若有侵权请在网页聊天中联系我
  1. 全屏
    SystemChrome.setEnabledSystemUIMode(SystemUiMode.manual, overlays: []);

  2. 取消右上角DEBUG图片
    debugShowCheckedModeBanner: false

  3. 圆形图片

Container(
     width: 230,
     height: 230,
     decoration: BoxDecoration(
           color: Colors.yellow,
           borderRadius: BorderRadius.circular(150),
           image: const DecorationImage(
           		image: NetworkImage("https://i.scwy.net/img/me.jpeg")
           )
     )
)
  1. 圆形图片
child: ClipOval(
   child: Image.network("https://i.scwy.net/img/me.jpeg"),
)
  1. 打开视觉调试开关
    debugPaintSizeEnabled = true;

相关文章