jpl_json_dynamic_widget_plugin_charts_flutter 3.0.1 copy "jpl_json_dynamic_widget_plugin_charts_flutter: ^3.0.1" to clipboard
jpl_json_dynamic_widget_plugin_charts_flutter: ^3.0.1 copied to clipboard

A plugin to the JSON Dynamic Widget to provide support for Google's Flutter Charts

🛡️ Fork — Jeff Peiffer Legacy (jpl_) #

Este paquete (jpl_json_dynamic_widget_plugin_charts_flutter) es un fork de json_dynamic_widget_plugin_charts_flutter, originalmente creado por Jeff Peiffer y archivado (read-only) junto con toda la org peiffer-innovations.

El prefijo jpl_ significa Jeff Peiffer Legacy: mantenemos vivo el legado de estos paquetes, bumpeados a las últimas versiones de Dart/Flutter, en el monorepo jpl.

Licencia original conservada. El crédito del diseño y la implementación original es de Jeff Peiffer.

DISCONTINUED #

This packages is discontinued as the base package is also discontinued and there does appear to be an active community maintaining a replacement.


Table of Contents

json_dynamic_widget_plugin_charts_flutter #

Table of Contents #

Live Example #

Introduction #

Plugin to the JSON Dynamic Widget to provide Charts support utilizing the charts_flutter.

Using the Plugin #

import 'package:json_dynamic_widget/json_dynamic_widget.dart';
import 'package:json_dynamic_widget_plugin_charts_flutter/json_dynamic_widget_plugin_charts_flutter.dart';


void main() {
  // Ensure Flutter's binding is complete
  WidgetsFlutterBinding.ensureInitialized();

  // ...

  // Get an instance of the registry
  var registry = JsonWidgetRegistry.instance;

  // Bind the plugin to the registry.  This is necessary for the registry to
  // find the widget provided by the plugin
  JsonChartsFlutterPlugin.bind(registry);

  // ...
}

See the extensive examples for usage information via the JSON renderers. All examples were borrowed from the official charts_flutter online gallery