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