pipsend_charts 1.1.8
pipsend_charts: ^1.1.8 copied to clipboard
Advanced financial charting library with built-in technical indicators - Simple, powerful.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'tabbed_example.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return const TabbedChartExample();
}
}