ArcaneBox(
children: [
Button.secondary(label: 'Open command', onPressed: openCommand),
ArcaneCommand(
isOpen: commandOpen,
onClose: closeCommand,
groups: [
CommandGroup(
heading: 'Navigation',
items: [
CommandItem(label: 'Go to Dashboard', onSelect: closeCommand),
CommandItem(
label: 'Open Settings',
shortcut: 'Cmd+,',
onSelect: closeCommand,
),
],
),
],
),
],
)
ArcaneCommand#
Use command surfaces for launcher-style navigation and power-user action palettes.
The live preview and code sample above use the neutral package:arcane_jaspr/arcane_jaspr.dart
API. The selected stylesheet owns spacing, density, radius, color, and interaction styling, so the same app code can render differently under Shadcn or Neon.
Source: lib/component/dialog/command.dart
See the Component Catalog for the full exported surface and source mapping.