A Backend-Driven UI toolkit, build your dynamic UI with json, and the json format is very similar with flutter widget code.
From 4.0.0-nullsafety.1 version, it supports null-safety.
From 3.0.0 version, it supports exporting your flutter code to json code. please check How to write the json code
From 1.0.4 version, it supports flutter web application.
- General info
- Screenshots
- Install
- Get started
- How to implement a WidgetParser
- How to add a click listener
- How to write the json code
- Widget Documents
- Setup
- Contact
I work for an e-commerce company. We need to build flexible pages. So we define a light UI protocol, and implement on Android and iOS. We can dynamic update App UIs by pushing a json file. With this ability, we can do some UI A/B testing without publishing App to app store. Flutter allows you to build beautiful native apps on iOS and Android from a single codebase, it can allow you to build web app later. Flutter's hot reload helps you quickly and easily experiment, build UIs, add features, and fix bugs faster. But it still build native app, the UIs can't be dynamic updated. If you want to modify the UIs, you need to publish the updated app to app store. With this project, you can build your UIs from a json string, which is the UI protocol. The json string is very similar with the Flutter widget dart code. All widget type and widget properties are the same.
Widget type will be a type property, and widget's properties will be the json properties too. All properties and their values will be almost the same. You can checkout the following document.
Currently support flutter widgets and properties
Add this to your package's pubspec.yaml file:
dependencies:
dynamic_widget: ^3.0.3
You can install packages from the command line:
with Flutter:
$ flutter packages get
Alternatively, your editor might support flutter packages get
. Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:dynamic_widget/dynamic_widget.dart';
You should use DynamicWidgetBuilder().build
method to covert a json string into flutter widget. It will be time-consuming. so you'd better using FutureBuilder
to build the UI.
import 'package:dynamic_widget/dynamic_widget.dart';
class PreviewPage extends StatelessWidget {
final String jsonString;
PreviewPage(this.jsonString);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text("Preview"),
),
body: FutureBuilder<Widget>(
future: _buildWidget(context),
builder: (BuildContext context, AsyncSnapshot<Widget> snapshot) {
if (snapshot.hasError) {
print(snapshot.error);
}
return snapshot.hasData
? SizedBox.expand(
child: snapshot.data,
)
: Text("Loading...");
},
),
);
}
Future<Widget> _buildWidget(BuildContext context) async {
return DynamicWidgetBuilder.build(jsonString, context, new DefaultClickListener());
}
}
- You need to implement the
WidgetParser
abstract class. - Add new created WidgetParser by
DynamicWidgetBuilder.addParser(WidgetParser parser)
method.
This is a RaisedButton widget parser.
import 'package:dynamic_widget/dynamic_widget/utils.dart';
import 'package:dynamic_widget/dynamic_widget.dart';
import 'package:flutter/material.dart';
class RaisedButtonParser extends WidgetParser {
@override
String get widgetName => "RaisedButton";
@override
Widget parse(Map<String, dynamic> map, BuildContext buildContext, ClickListener listener) {
String clickEvent =
map.containsKey("click_event") ? map['click_event'] : "";
var raisedButton = RaisedButton(
color: map.containsKey('color') ? parseHexColor(map['color']) : null,
disabledColor: map.containsKey('disabledColor')
? parseHexColor(map['disabledColor'])
: null,
disabledElevation:
map.containsKey('disabledElevation') ? map['disabledElevation']?.toDouble() : 0.0,
disabledTextColor: map.containsKey('disabledTextColor')
? parseHexColor(map['disabledTextColor'])
: null,
elevation: map.containsKey('elevation') ? map['elevation']?.toDouble() : 0.0,
padding: map.containsKey('padding')
? parseEdgeInsetsGeometry(map['padding'])
: null,
splashColor: map.containsKey('splashColor')
? parseHexColor(map['splashColor'])
: null,
textColor:
map.containsKey('textColor') ? parseHexColor(map['textColor']) : null,
child: DynamicWidgetBuilder.buildFromMap(map['child'], buildContext, listener),
onPressed: () {
listener.onClicked(clickEvent);
},
);
return raisedButton;
}
}
Add it to parsers list.
DynamicWidgetBuilder.addParser(RaisedButtonParser());
Add "click_event" property to your widget json definition. for example:
var raisedButton_json =
'''
{
"type": "Container",
"alignment": "center",
"child": {
"type": "RaisedButton",
"color": "##FF00FF",
"padding": "8,8,8,8",
"textColor": "#00FF00",
"elevation" : 8.0,
"splashColor" : "#00FF00",
"click_event" : "route://productDetail?goods_id=123",
"child" : {
"type": "Text",
"data": "I am a button"
}
}
}
We suggest you'd better to use an URI to define the event, as the exmaple, it's a event for going to a product detail page.
Then, define a ClickListener
class DefaultClickListener implements ClickListener{
@override
void onClicked(String event) {
print("Receive click event: " + event);
}
}
Finally, pass the listener to build method.
Future<Widget> _buildWidget() async{
return DynamicWidgetBuilder.build(jsonString, buildContext, new DefaultClickListener());
}
You don't need to write the json code by hand, you can export your flutter code to json code efficiently with DynamicWidgetJsonExportor widget. You just need to wrap your flutter code with DynamicWidgetJsonExportor widget, then invoke its exportJsonString()
method, look at following example, click the "export" button, it will find the DynamicWidgetJsonExportor widget, and export its child to json code efficiently.
class _JSONExporterState extends State<JSONExporter> {
GlobalKey key = GlobalKey();
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text("export example"),
),
body: Builder(
builder: (context) => Column(
children: [
Expanded(
child: DynamicWidgetJsonExportor(
key: key,
child: Container(
child: GridViewWidget(
GridViewParams(
mainAxisSpacing: 2.0,
crossAxisSpacing: 2.0,
crossAxisCount: 2,
childAspectRatio: 1.6,
padding: EdgeInsets.all(10.0),
pageSize: 10,
children: [
ListTile(
leading: Text("Leading text"),
title: Text("title"),
subtitle: Text("subtitle"),
),
ListTile(
leading: Text("Leading text"),
title: Text("title"),
subtitle: Text("subtitle"),
)
]),
context),
),
),
),
RaisedButton(
child: Text("Export"),
onPressed: () {
var exportor = key.currentWidget as DynamicWidgetJsonExportor;
var exportJsonString = exportor.exportJsonString();
Scaffold.of(context).showSnackBar(SnackBar(
content: Text("json string was exported to editor page.")));
Future.delayed(Duration(seconds: 3), (){
Navigator.push(
context,
MaterialPageRoute(
builder: (context) =>
CodeEditorPage(exportJsonString)));
});
},
)
],
),
),
);
}
}
You can use whatever your favorite IDE to build the UI, then use DynamicWidgetJsonExportor to export to json code. For detail, please check the Dynamic Widget Demo source code.
Already completed widgets:
- Container
- Text
- TextSpan
- TextStyle
- RaisedButton
- ElevatedButton
- TextButton
- Row
- Column
- AssetImage
- NetworkImage
- FileImage
- Placeholder
- GridView
- ListView
- PageView
- Expanded
- Padding
- Center
- Align
- AspectRatio
- FittedBox
- Baseline
- Stack
- Positioned
- IndexedStack
- ExpandedSizedBox
- SizedBox
- Opacity
- Wrap
- ClipRRect
- SafeArea
- SelectableText
- Icon
- DropCapText
- Scaffold
- AppBar
- LimitedBox
- Offstage
- OverflowBox
- Divider
- RotatedBox
- SingleChildScrollView
You can view Currently support widgets and properties here.
Checkout this project and run demo.
Checkout this project and run demo.
Created by @[email protected] - feel free to contact me