jseen 2.0.0 copy "jseen: ^2.0.0" to clipboard
jseen: ^2.0.0 copied to clipboard

Json Tree Viewer.

Display JSON objects in a beautiful customizable flutter tree widget. #

Check out the flutter web demo here: http://solid-throne.surge.sh/#/


Usage #

Add dependency to pubspec.yaml #

dependencies:
    jseen:

Import package #

import 'package:jseen/jseen_tree.dart';

Use Widget #

JSeenTree(
    json: '{"name":"Bob"}'
)

Customize #

JSeenTree(
    json: '{"name":"Bob"}',
    indent: 20,
    errorWidget: Text('ERROR!!!'),
    theme: JSeenTheme(
        keyStyle: TextStyle(color: Colors.purple.shade200),
        stringStyle: TextStyle(color: Colors.yellow),
    ),
)
2
likes
145
points
98
downloads

Publisher

unverified uploader

Weekly Downloads

Json Tree Viewer.

Repository (GitHub)
View/report issues

Topics

#json

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_easy_treeview

More

Packages that depend on jseen