🛡️ Fork — Jeff Peiffer Legacy (jpl_)

Este paquete (jpl_json_dynamic_widget_plugin_markdown) es un fork de json_dynamic_widget_plugin_markdown, 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.

ARCHIVED

Per the official deprecation of flutter_markdown this package is now archived and will no longer be updated. If someone would like to take over for maintaining markdown support via a plugin using a replacement package to flutter_markdown, that'd be great.

Table of Contents

json_dynamic_widget_plugin_markdown

Table of Contents

Live Example

Introduction

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

Using the Plugin

import 'package:json_dynamic_widget/json_dynamic_widget.dart';
import 'package:json_dynamic_widget_plugin_markdown/json_dynamic_widget_plugin_markdown.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
  JsonMarkdownPluginRegistrar.registerDefaults(registry: registry);

  // ...
}