Tag Autocomplete & SearchableState¶
The note form's tag suggestions are the smallest high-signal example of
SearchableState<T> in the flagship portfolio.
Current Scenario Use¶
- the workspace maintains the available tag set
NoteFormVMcomposesSearchableState<string>over that tag list- the host adapter binds the filtered suggestions without moving search state into the view
Why It Matters¶
This example complements the broader notes-list filtering story. The notes list
uses SearchableState over note VMs; tag autocomplete shows the same helper on
a lightweight string collection.
Where To Verify¶
- Primitive guide: State & Reactive Helpers
- Parity matrix row: examples/notes-showcase-parity.md
- Flavor READMEs: C#, Python, TypeScript, Swift