Flutter 绘制小圆点
Posted 安果移不动
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flutter 绘制小圆点相关的知识,希望对你有一定的参考价值。
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),
),
],
),
以上是关于Flutter 绘制小圆点的主要内容,如果未能解决你的问题,请参考以下文章
Flutterflutter doctor 报错Android license status unknown. Run `flutter doctor --android-licenses‘(代码片段