flutter_graph 0.0.1
flutter_graph: ^0.0.1 copied to clipboard
Flutter package to draw graphs.
example/main.dart
import 'package:flutter/material.dart';
import 'package:flutter_graph/flutter_graph.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme
.of(context)
.colorScheme
.inversePrimary,
title: Text("Graph Demo"),
),
body: const Center(
child: BarChartWidget(
bars: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
labels: [
'L1',
'L2',
'L',
'L',
'L5',
'L6',
'L7',
'g8',
'g9',
'g10'
],
barColor: Colors.blueAccent,
axisLineColor: Colors.red,
barGap: 4.0,
size: Size(300, 400),
)
),
);
}
}