| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- ---
- name: fluxui-development
- description: "Use this skill for Flux UI development in Livewire applications only. Trigger when working with <flux:*> components, building or customizing Livewire component UIs, creating forms, modals, tables, or other interactive elements. Covers: flux: components (buttons, inputs, modals, forms, tables, date-pickers, kanban, badges, tooltips, etc.), component composition, Tailwind CSS styling, Heroicons/Lucide icon integration, validation patterns, responsive design, and theming. Do not use for non-Livewire frameworks or non-component styling."
- license: MIT
- metadata:
- author: laravel
- ---
- @php
- /** @var \Laravel\Boost\Install\GuidelineAssist $assist */
- @endphp
- # Flux UI Development
- ## Documentation
- Use `search-docs` for detailed Flux UI patterns and documentation.
- ## Basic Usage
- This project uses the Pro version of Flux UI, which includes all free and Pro components and variants.
- 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.
- @boostsnippet("Basic Button", "blade")
- <flux:button variant="primary">Click me</flux:button>
- @endboostsnippet
- ## Available Components (Pro Edition)
- Available: accordion, autocomplete, avatar, badge, brand, breadcrumbs, button, calendar, callout, card, chart, checkbox, command, composer, context, date-picker, dropdown, editor, field, file-upload, heading, icon, input, kanban, modal, navbar, otp-input, pagination, pillbox, popover, profile, radio, select, separator, skeleton, slider, switch, table, tabs, text, textarea, time-picker, toast, tooltip
- ## Icons
- Flux includes [Heroicons](https://heroicons.com/) as its default icon set. Search for exact icon names on the Heroicons site - do not guess or invent icon names.
- @boostsnippet("Icon Button", "blade")
- <flux:button icon="arrow-down-tray">Export</flux:button>
- @endboostsnippet
- For icons not available in Heroicons, use [Lucide](https://lucide.dev/). Import the icons you need with the Artisan command:
- ```bash
- {{ $assist->artisanCommand('flux:icon crown grip-vertical github') }}
- ```
- ## Common Patterns
- ### Form Fields
- @boostsnippet("Form Field", "blade")
- <flux:field>
- <flux:label>Email</flux:label>
- <flux:input type="email" wire:model="email" />
- <flux:error name="email" />
- </flux:field>
- @endboostsnippet
- ### Tables
- @boostsnippet("Table", "blade")
- <flux:table>
- <flux:table.columns>
- <flux:table.cell>Column Name</flux:table.cell>
- </flux:table.columns>
- <flux:table.row>
- <flux:table.cell>Value</flux:table.cell>
- </flux:table.row>
- </flux:table>
- @endboostsnippet
- ## Verification
- 1. Check component renders correctly
- 2. Test interactive states
- 3. Verify mobile responsiveness
- ## Common Pitfalls
- - 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
|