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(),
      },
    );
  }
}
48
likes
130
pub points
76%
popularity

Publisher

unverified uploader

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)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on chart_components