fluxui-development

Activate this skill when:

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "fluxui-development" with this command: npx skills add laravel/boost/laravel-boost-fluxui-development

Flux UI Development

When to Apply

Activate this skill when:

  • Creating UI components or pages

  • Working with forms, modals, or interactive elements

  • Checking available Flux components

Documentation

Use search-docs for detailed Flux UI patterns and documentation.

Basic Usage

This project uses the free edition of Flux UI, which includes all free components and variants but not Pro components.

Flux UI is a component library for Livewire built with Tailwind CSS. It provides components that are easy to use and customize.

Use Flux UI components when available. Fall back to standard Blade components when no Flux component exists for your needs.

<flux:button variant="primary">Click me</flux:button>

Available Components (Free Edition)

Available: avatar, badge, brand, breadcrumbs, button, callout, checkbox, dropdown, field, heading, icon, input, modal, navbar, otp-input, profile, radio, select, separator, skeleton, switch, text, textarea, tooltip

Icons

Flux includes Heroicons as its default icon set. Search for exact icon names on the Heroicons site - do not guess or invent icon names.

<flux:button icon="arrow-down-tray">Export</flux:button>

For icons not available in Heroicons, use Lucide. Import the icons you need with the Artisan command:

php artisan flux:icon crown grip-vertical github

Common Patterns

Form Fields

<flux:field> <flux:label>Email</flux:label> <flux:input type="email" wire:model="email" /> <flux:error name="email" /> </flux:field>

Modals

<flux:modal wire:model="showModal"> <flux:heading>Title</flux:heading> <p>Content</p> </flux:modal>

Verification

  • Check component renders correctly

  • Test interactive states

  • Verify mobile responsiveness

Common Pitfalls

  • Trying to use Pro-only components in the free edition

  • Not checking if a Flux component exists before creating custom implementations

  • Forgetting to use the search-docs tool for component-specific documentation

  • Not following existing project patterns for Flux usage

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

tailwindcss-development

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

livewire-development

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

pennant-development

No summary provided by upstream source.

Repository SourceNeeds Review