return Container(
width: widget.width,
height: widget.height,
child: JsonEditor(
onChanged: (_) {},
json: jsonEncode(widget.json),
themeColor: Color(0xFF4B39EF),
));
this is my configuration
I'm able to edit the already existing values of json object, but i can't add new string, list or object.
Instead, in text visualization I can make any modification.
What am I missing?
return Container(
width: widget.width,
height: widget.height,
child: JsonEditor(
onChanged: (_) {},
json: jsonEncode(widget.json),
themeColor: Color(0xFF4B39EF),
));
this is my configuration
I'm able to edit the already existing values of json object, but i can't add new string, list or object.
Instead, in text visualization I can make any modification.
What am I missing?