0
点赞
收藏
分享

微信扫一扫

Flutter 绘制小圆点

343d85639154 2023-03-17 阅读 72


Flutter 绘制小圆点_ci

 

Row(
children: [
Container(
width: 10,
height: 10,
decoration: BoxDecoration(
color: Colors.black87,
borderRadius: BorderRadius.all(Radius.circular(5))),
),
SizedBox(width: 5,),
Text(
"无法使用账号",
style: TextStyle(color: Colors.black87, fontSize: 16),
),
],
),

举报

相关推荐

0 条评论