v2.1.3
boxicons
一个非常美丽且高质量的图标库,包含1500多个图标,以及此插件可帮助在Flutter中使用Boxicons图标库。
24喜欢 338近 30 天下载140Pub 分数
AndroidiOSWebmacOSWindowsLinux
Flutter 的 Boxicons 自定义。
{"sdk":"flutter"}{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
Easy to use 1500+ Icon from Boxicons.
In the dependencies: section of your pubspec.yaml, add the following line:
boxicons: <latest_version>
You can use it very easily. For example:
Icon(Boxicons.bx_home_smile)
import 'package:flutter/material.dart';
import 'package:boxicons/boxicons.dart';
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return IconButton(
// Use Boxicons
icon: Icon(Boxicons.bx_home_smile),
onPressed: () {
print('its done');
}
);
}
}
Announcing Boxicons v2.0.9!
MIT