animated_fl_chart 0.0.6 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.
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(),
);
}
}