advanced_bar_chart 0.0.4
advanced_bar_chart: ^0.0.4 copied to clipboard
Create versatile bar charts in any orientation with advanced, customizable pop-ups in Flutter, and easy boundary control.
import 'package:example/home.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(
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.deepOrange,
brightness: Brightness.dark,
),
useMaterial3: true,
),
home: const HomeScreen(),
);
}
}
copied to clipboard