Skip to content

the6th/UIWidgets.AddOns

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UIWidgets.AddOns

Add-On packages for Unity UIWidgets

Requirements

Contains

1. Split View

2. Color Picker

3. Useful Setting panel components

  • Widget componetns for settng menu/form.
  • Dropdown

  • Checkbox

  • Value Up/Down (2 types)

  • Value Slider

  • Text input filed

  • Button

  • Color picker (3 types)

4. Markdown render

  • 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
        );
    }

License

  • MIT License