chart_it 0.1.0
chart_it: ^0.1.0 copied to clipboard
A customisable charts library with seamless animations for flutter.
example/lib/main.dart
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());
}