heroicons
輕鬆在您的 Flutter 應用中使用 heroicons 圖示集作為 SVG 檔案。
85喜歡 1.1萬近 30 天下載150Pub 分數
AndroidiOSWebmacOSWindowsLinux
適用於 Flutter 的 HeroIcons SVG 圖標
{"sdk":"flutter"}^2.0.17^1.9.0^4.10.1^3.0.1^5.0.0^4.1.0以下為英文專案原文快照,最新內容請造訪 GitHub。
heroicons port to Flutter. This package renders the icons as SVG images.
This package was last updated to use heroicons
version 2.2.0
(on December 15th, 2024). If there's a newer version of HeroIcons available, please
create an issue or pull request.
class MyExampleWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return HeroIcon(
HeroIcons.calendar,
style: HeroIconStyle.outline, // Outlined icons are used by default.
color: Colors.red,
size: 30,
);
}
}
You can also use HeroIconTheme to set the default style (e.g., outline or solid) for all icons in your app.
(You'll still be able to override the style for individual icons.)
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
// ...
home: HeroIconTheme(
style: HeroIconStyle.solid,
child: MyHomePage(),
),
);
}
}
Run flutter pub add heroicons to quickly add latest version from your CLI.