ワンクリックで
hugeicons-usage
Guidelines for using the Hugeicons Flutter package, covering widget usage, customization, and theme integration.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Guidelines for using the Hugeicons Flutter package, covering widget usage, customization, and theme integration.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Design, implement, refactor, and review Flutter apps that use feature-based vertical slices, handwritten Dart models/providers, componentized StatelessWidget UI, Riverpod state management, and a shared core layer. Use when adding Flutter features, organizing lib/, moving shared code, wiring repositories/providers/routes, avoiding code generation, avoiding private UI build helper methods, or checking architecture consistency in a Riverpod Flutter project.
Guidelines for finding and suggesting icons from the Hugeicons package.
| name | hugeicons-usage |
| description | Guidelines for using the Hugeicons Flutter package, covering widget usage, customization, and theme integration. |
HugeIcon widget: Always use the provided HugeIcon widget for rendering icons.HugeIcon.icon expects List<List<dynamic>>. HugeIcons.* constants are SVG JSON/path data, not Flutter IconData.Icon: Do not render HugeIcons.* constants with Flutter's Icon widget. Pass them to HugeIcon.HugeIcons class (e.g., HugeIcons.strokeRoundedUser).HugeIcon inherits the color from the current IconTheme. You can override this using the color property.size property to scale the icon.strokeWidth property.HugeIcon(
icon: HugeIcons.strokeRoundedHome01,
color: Colors.black,
size: 24.0,
)
IconTheme(
data: IconThemeData(color: Colors.blue, size: 32.0),
child: HugeIcon(
icon: HugeIcons.strokeRoundedSettings01,
),
)
HugeIcon(
icon: HugeIcons.strokeRoundedFavorite,
color: Colors.red,
strokeWidth: 2.5,
)
icon property is not null and is a valid constant from HugeIcons.IconData, it is using the wrong type. Hugeicons icon constants are List<List<dynamic>>.IconTheme or DefaultTextStyle is providing a color you don't expect.