chart_it 0.0.1 copy "chart_it: ^0.0.1" to clipboard
chart_it: ^0.0.1 copied to clipboard

outdated

A customisable charts library for flutter.

example/lib/main.dart

import 'package:example/place_holder/test_pie_chart.dart';
import 'package:example/showcase.dart';
import 'package:flutter/material.dart';

void main() {
  ///Call this first to make sure we can make other system level calls safely
  WidgetsFlutterBinding.ensureInitialized();
  // runApp(const MyApp());
  runApp(const ShowcaseApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Charts Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const TestPieChart(),
    );
  }
}
7
likes
0
points
43
downloads

Publisher

verified publisherwednesday.is

Weekly Downloads

A customisable charts library for flutter.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

equatable, flutter, vector_math

More

Packages that depend on chart_it