Add-On packages for Unity UIWidgets
- Unity 2019.3.15f1 / Unity2019.4.16f1 (I tried)
- UIWidgets 1.5.4 Unity Asset Store | GitHub
-
based on flutter extension split_view 1.0.1.
-
based on flutter extension flutter_colorpicker 0.3.4.
- Widget componetns for settng menu/form.
-
Dropdown
-
Checkbox
-
Value Up/Down (2 types)
-
Value Slider
-
Text input filed
-
Button
-
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 ); }
- MIT License