KoderCommandPalette
Documented Navigation (no spec yet — koder_kit#029 tracks)
Ctrl+K command palette with fuzzy match across in-app actions. Proposed in koder_kit#029.
Demo
Static visual mock — pixel-faithful but non-interactive. Sprint 2.3 will swap selected demos for live Flutter Web embeds.
Type a command…
- File · New fileCtrl+N
- Settings · Theme
- View · Zoom inCtrl++
Modal triggered by Ctrl+K. Fuzzy-matches against label + category; arrow keys to move, Enter to invoke.
Availability
- Flutter (koder_kit)
koder_kit v0.25.0+
Flutter usage
import 'package:koder_kit/koder_kit.dart';// Bind to Ctrl+K / ⌘K at the app root.
KoderCommandPalette.show(
context,
commands: <KoderCommand>[
KoderCommand(id: 'file.new', label: 'New file', onInvoke: (ctx) => ...),
// …
],
)