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

outdated

Two chart components for Flutter. An animated bar chart with label, value, icon and bar color. An animated calendar grid chart based on the github calendar.

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
0
pub points
75%
popularity

Publisher

unverified uploader

Two chart components for Flutter. An animated bar chart with label, value, icon and bar color. An animated calendar grid chart based on the github calendar.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on chart_components