在Flutter中为图标添加边框

6
我想在Flutter中像下面的图片一样为图标添加边框。

Star with border color

我怎么才能实现这个?

那么......我想我们必须有一个替代方案,对吧? - Jalakam Kiran
1个回答

9

我尝试了一些创意性的东西

Stack(
  children: [
     _buildIcon(48, Colors.blue),
     _buildIcon(44, Colors.white),
  ],
),

Widget _buildIcon(double size, Color color) {
  return Container(
    height: 48,
    width: 48,
    alignment: Alignment.center,
    child: Icon(
      Icons.star,
      color: color,
      size: size,
    ),
  );
}

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接