treemap 0.4.0 copy "treemap: ^0.4.0" to clipboard
treemap: ^0.4.0 copied to clipboard

A simple Dart implementation of treemap.

Treemap #

pub package travis

A simple Dart implementation of treemap.

Usage #

Add treemap to your pubspec:

dependencies:
  treemap: any # or the latest version on Pub

Add in you project.

  Widget build(BuildContext context) {
    return child: TreeMapLayout(
      tile: Binary(),
      children: [
        TreeNode.node(
          padding: EdgeInsets.symmetric(horizontal: 20),
          children: [
            TreeNode.leaf(
              value: 16,
              margin: EdgeInsets.all(5),
            ),
            TreeNode.leaf(
              value: 57,
              margin: EdgeInsets.all(5),
            ),
            TreeNode.leaf(
              value: 97,
              margin: EdgeInsets.all(5),
            ),
            TreeNode.leaf(
              value: 3,
              margin: EdgeInsets.all(5),
            ),
            TreeNode.leaf(
              value: 43,
              margin: EdgeInsets.all(5),
            ),
            TreeNode.leaf(
              value: 54,
              margin: EdgeInsets.all(5),
            ),
          ],
        ),
      ],
    );
  }

Run the example #

See the example/ folder for a working example app.

Supporting Me #

A donation through my Ko-Fi page would be infinitly appriciated: ko-fi

but, if you can't or won't, a star on GitHub and a like on pub.dev would also go a long way!

Every donation gives me fuel to continue my open-source projects and lets me know that I'm doing a good job.

7
likes
110
pub points
84%
popularity

Publisher

unverified uploader

A simple Dart implementation of treemap.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on treemap