jpl_json_dynamic_widget_plugin_js 2.3.0+3
jpl_json_dynamic_widget_plugin_js: ^2.3.0+3 copied to clipboard
A plugin to the JSON Dynamic Widget to provide JS support to the widgets
🛡️ Fork — Jeff Peiffer Legacy (
jpl_) #Este paquete (
jpl_json_dynamic_widget_plugin_js) es un fork dejson_dynamic_widget_plugin_js, originalmente creado por Jeff Peiffer y archivado (read-only) junto con toda la orgpeiffer-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 monorepojpl.Licencia original conservada. El crédito del diseño y la implementación original es de Jeff Peiffer.
Table of Contents
json_dynamic_widget_plugin_js #
Table of Contents #
Live Example #
Introduction #
Plugin to the JSON Dynamic Widget to provide JS support by using JSF.
Starting from version
0.5.2ofJSF, multiple data types are now supported, includingint,bigint,double,bool,string, andnull.
Using the Plugin #
import 'package:json_dynamic_widget/json_dynamic_widget.dart';
import 'package:json_dynamic_widget_plugin_js/json_dynamic_widget_plugin_js.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
JsonJsPlugin.bind(registry);
// ...
}