簡體   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