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

polygon_chart is a Flutter package which is used for visually representing the data in form of polygon charts.

example/lib/main.dart

import 'package:example/dashboard.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Polygon Chart',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const DashboardPage(),
    );
  }
}
14
likes
140
points
19
downloads

Publisher

unverified uploader

Weekly Downloads

polygon_chart is a Flutter package which is used for visually representing the data in form of polygon charts.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on polygon_chart