This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:high_chart/high_chart.dart'; | |
class LineChart extends StatelessWidget { | |
const LineChart({Key? key}) : super(key: key); | |
final String _chartData = '''{ | |
accessibility: { | |
enabled: false | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------------------------------------------------------------PART I -------------------------------------------------------- | |
------------EMPTY PAGE WITH TITLE------------------------ | |
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { |