A simple Dart implementation of bubble chart.
Add bubble_chart to your pubspec:
dependencies:
bubble_chart: any # or the latest version on Pub
Add in you project.
final bubbles = BubbleNode.node(
padding: 15,
children: [
BubbleNode.node(
padding: 30,
children: [
BubbleNode.leaf(
options: BubbleOptions(
color: Colors.brown,
),
value: 2583,
),
BubbleNode.leaf(
options: BubbleOptions(
color: Colors.brown,
),
value: 4159,
),
BubbleNode.leaf(
options: BubbleOptions(
color: Colors.brown,
),
value: 4159,
),
],
),
BubbleNode.leaf(
value: 4159,
),
BubbleNode.leaf(
value: 2074,
),
BubbleNode.leaf(
value: 4319,
),
BubbleNode.leaf(
value: 2074,
),
BubbleNode.leaf(
value: 2074,
),
BubbleNode.leaf(
value: 2074,
),
BubbleNode.leaf(
value: 2074,
),
],
);
Widget build(BuildContext context) {
return Scaffold(
body: BubbleChartLayout(
root: bubbles,
),
);
}
See the example/
folder for a working example app.
A donation through my Ko-Fi page would be infinitly appriciated:
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.