mx_chart 2.0.0+3
mx_chart: ^2.0.0+3 copied to clipboard
k chart
example/lib/main.dart
import 'package:flutter/material.dart';
import 'k_chart/k_chart.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: KChartPage(),
);
}
}