Add-On packages for Unity UIWidgets
based on flutter extension split_view 1.0.1.
based on flutter extension flutter_colorpicker 0.3.4.
Widget componetns for settng menu/form.
Color picker (3 types)
based on Markdown-Renderer-For-UIWidgets by suntabu.
Example
protected override Widget createWidget()
{
var title = "Markdown Demo";
return new MaterialApp(
title: title,
showPerformanceOverlay: false,
home: new Scaffold(
appBar: new AppBar(
title: new Text(title)
),//AppBar
body: new Markdown(
key: null,
data: (string) markdownText,
syntaxHighlighter: new DartSyntaxHighlighter(SyntaxHighlighterStyle.lightThemeStyle()),
onTapLink: url => { Application.OpenURL(url); }
)//Markdown
)//Scaffold
);
}