chart_it 0.2.2
chart_it: ^0.2.2 copied to clipboard
A customisable charts library with seamless animations for flutter.
import 'package:example/showcase.dart';
import 'package:example/tools/current_device.dart';
import 'package:flutter/material.dart';
import 'package:flutter_displaymode/flutter_displaymode.dart';
void main() {
///Call this first to make sure we can make other system level calls safely
WidgetsFlutterBinding.ensureInitialized();
if (CurrentDevice.isAndroid) {
FlutterDisplayMode.setHighRefreshRate();
}
// runApp(const MyApp());
runApp(const ShowcaseApp());
}