bubble_chart 0.1.1 copy "bubble_chart: ^0.1.1" to clipboard
bubble_chart: ^0.1.1 copied to clipboard

outdated

A simple Dart implementation of bubble chart. It creates bubbles in random points and collide its all to container center. Can be implemented with any features.

Bubble chart #

pub package

A simple Dart implementation of bubble chart.

Usage #

Add bubble_chart to your pubspec:

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

Add in you project.

  final bubbles = [
    Bubble(
      color: Colors.blue,
      radius: 40,
      builder: (context) {
        return Text("ciao");
      },
      onTap: () {
        print("tap1");
      },
    ),
  ];

  Widget build(BuildContext context) {
    return Scaffold(
      body: BubbleChart(
        bubbles: bubbles,
      ),
    );
  }

Run the example #

See the example/ folder for a working example app.

14
likes
0
pub points
85%
popularity

Publisher

unverified uploader

A simple Dart implementation of bubble chart. It creates bubbles in random points and collide its all to container center. Can be implemented with any features.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on bubble_chart