circle_chart 0.0.2 copy "circle_chart: ^0.0.2" to clipboard
circle_chart: ^0.0.2 copied to clipboard

outdated

This is a library for creating an animated circle chart widget and add given other widget under the chart.

pub package

circle_chart #

This is a library for creating an animated circle chart widget and add given other widget under the chart.

drawing

Installation #

Install the latest version from pub.

Getting Started #

Import the package:

import 'package:circle_chart/circle_chart.dart';

Create a CircleChart widget and use in your build method:

Widget chart = CircleChart(
      progressNumber: 4, 
      maxNumber: 10, 
      children: 
      [
          Icon(Icons.arrow_upward),
          Text('This is kind of circle chart.',),
          Text("This is kind of description",
               style: Theme.of(context).textTheme.headline4),
       ]);
Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Container(
              child: chart
            )
          ],
        ),
      ),
    );
  }
19
likes
0
pub points
56%
popularity

Publisher

unverified uploader

This is a library for creating an animated circle chart widget and add given other widget under the chart.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

auto_size_text, flutter

More

Packages that depend on circle_chart