single_value_charts 1.0.0
single_value_charts: ^1.0.0 copied to clipboard
A Flutter package for rendering versatile and customizable single value charts. Ideal for dashboards, analytics, and data visualization tasks. Supports a wide range of chart types like trend indicator [...]
example/lib/main.dart
import 'package:flutter/material.dart';
import 'gallery_screen.dart';
void main() {
runApp(const ExampleChartGallery());
}
class ExampleChartGallery extends StatelessWidget {
const ExampleChartGallery({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Single Value Charts Example',
theme: ThemeData(primarySwatch: Colors.blue),
home: GalleryScreen(),
);
}
}