원클릭으로
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.