chart_components 1.0.1 copy "chart_components: ^1.0.1" to clipboard
chart_components: ^1.0.1 copied to clipboard

Two chart components for Flutter. Animated bar chart and animated calendar grid chart based on the github's one. Many properties to customize.

example/lib/main.dart

import 'package:example/bar_chart_page.dart';
import 'package:flutter/material.dart';
import 'package:example/home_page.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      initialRoute: HomePage.ID,
      routes: {
        HomePage.ID: (context) => HomePage(),
        BarChartPage.ID: (context) => BarChartPage(),
      },
    );
  }
}
49
likes
90
points
92
downloads

Publisher

unverified uploader

Weekly Downloads

Two chart components for Flutter. Animated bar chart and animated calendar grid chart based on the github's one. Many properties to customize.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on chart_components