chart_iq 0.0.5 chart_iq: ^0.0.5 copied to clipboard
Flutter SDK for the ChartIQ JavaScript library. The ChartIQ Flutter SDK supports a basic charting application. The SDK can be extended to support more elaborate implementations by adding code to invok [...]
import 'package:flutter/material.dart';
import 'app.dart';
import 'app_preferences.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await AppPreferences.init();
runApp(const MyApp());
}