most_key_value_editor 1.0.0
most_key_value_editor: ^1.0.0 copied to clipboard
Highly customizable JSON editor based on `package:most_schema_parser`.
MOST Key-Value Editor
Create highly customizable forms from JSON Schema files.
Features #
- Highly customizable
- Out-of-the-box support for basic types:
- booleans
{ "type": "boolean" }
- strings
{ "type": "string" }
- enums
{ "type": "string", "enumValues": ["a", "b", "c"] }
- numbers
{ "type": "number" }{ "type": "integer" }
- arrays
{ "type": "array", "items": { "type": "string" } }
- booleans
- Out-of-the-box validation support
- Feature-rich editor controller
- Built-it search bar for quicker navigation
Usage #
- Create
JsonSchemaobject; - Convert
JsonSchemaintoMostJsonSchema; - Add
MostKeyValueEditorto widget treeMostJsonSchemaprovided!
For more information on the usage, please, check example/.