animated_fl_chart 0.0.6 copy "animated_fl_chart: ^0.0.6" to clipboard
animated_fl_chart: ^0.0.6 copied to clipboard

Animated FL Chart is a highly customizable Flutter chart library that supports Line Chart, Bar Chart, Pie Chart, Scatter Chart, and Radar Chart. Chart with render animation.

example/lib/main.dart

import 'package:fl_chart_app/presentation/pages/home_page.dart';
import 'package:fl_chart_app/presentation/resources/app_colors.dart';
import 'package:flutter/material.dart';


import 'package:fl_chart_app/util/web/non_web_url_strategy.dart'
    if (dart.library.html) 'package:fl_chart_app/util/web/web_url_strategy.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: "Animated FL Chart",
      theme: ThemeData(
        brightness: Brightness.dark,
        useMaterial3: true,
        scaffoldBackgroundColor: AppColors.pageBackground,
      ),
      home: const HomePage(),
    );
  }
}
8
likes
140
points
37
downloads

Publisher

unverified uploader

Weekly Downloads

Animated FL Chart is a highly customizable Flutter chart library that supports Line Chart, Bar Chart, Pie Chart, Scatter Chart, and Radar Chart. Chart with render animation.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

equatable, flutter

More

Packages that depend on animated_fl_chart