pretty_charts 0.0.1-dev.1 copy "pretty_charts: ^0.0.1-dev.1" to clipboard
pretty_charts: ^0.0.1-dev.1 copied to clipboard

A Flutter library to draw pretty charts like Matplotlib or Plotly

example/lib/main.dart

import 'package:example/home_screen.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(
      title: 'Pretty Charts',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const HomeScreen(),
    );
  }
}
9
likes
140
points
26
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter library to draw pretty charts like Matplotlib or Plotly

Repository (GitHub)
View/report issues

Topics

#chart #plot #scientist #graph #visualization

Documentation

API reference

License

MIT (license)

Dependencies

collection, flutter

More

Packages that depend on pretty_charts