graphify 0.0.2 copy "graphify: ^0.0.2" to clipboard
graphify: ^0.0.2 copied to clipboard

A data visualization charts library, based on Apache Echarts, able to build advanced charts like WebGL 3D, GIS map, etc.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:graphify_example/core/custom_scroll_behavior.dart';
import 'package:graphify_example/core/responsibility.dart';
import 'package:graphify_example/core/router.dart';

void main() {

  Responsibility();

  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  Widget build(BuildContext context) {
    return MaterialApp.router(
      title: 'Graphify Example',
      debugShowCheckedModeBanner: false,
      restorationScopeId: 'app',
      backButtonDispatcher: RootBackButtonDispatcher(),
      scrollBehavior: CustomScrollBehavior(),
      routerDelegate: router.routerDelegate,
      routeInformationParser: router.routeInformationParser,
      routeInformationProvider: router.routeInformationProvider,
    );
  }

}
32
likes
150
points
332
downloads

Publisher

unverified uploader

Weekly Downloads

A data visualization charts library, based on Apache Echarts, able to build advanced charts like WebGL 3D, GIS map, etc.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface, pointer_interceptor, webview_flutter

More

Packages that depend on graphify

Packages that implement graphify