繁体   English   中英

如何在 flutter 中创建蓝色验证标记

[英]How to create blue verification mark in flutter

我想给我的用户一个验证标记。 很像 Instagram 或 Facebook 所拥有的

像这样的东西

怎么做?

您可以在项目中使用svgicon

 IconButton(
            icon: new Icon(Icons.verified),
            color: Colors.yellow,
            highlightColor: Colors.blue,
            onPressed: _onSearchButtonPressed(),
          ),

执行:

static const IconData verified = IconData(0xe699, fontFamily: 'MaterialIcons');

还可以查看这些以获取更多信息:

https://api.flutter.dev/flutter/material/Icons/verified-constant.html

https://www.svgrepo.com/vectors/verified/

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM