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

outdated

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. Currently, we have 2 examp [...]

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
0
points
22
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. Currently, we have 2 examples of animation bar charts.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

equatable, flutter

More

Packages that depend on animated_fl_chart