UIWidgets for Unity

Inspired by Flutter

"UIWidgets is a plugin package for Unity Editor which helps developers to create, debug and deploy efficient, cross-platform Apps using the Unity Engine."

Hello World in UIWidgets

Code

protected override Widget createWidget()
{
  return new MaterialApp(
    home: new Center(
      child: new Text (
        "UIWidgets (Flutter)\nfor Unity & C# ❤",
        textAlign: TextAlign.center,
        style: new TextStyle(
          fontSize: 42.0f
        )
      )
    )
  );
}

Code example

protected override Widget createWidget()
{
  return new MaterialApp(
    home: new Center(
      child: new Column(
        mainAxisAlignment: MainAxisAlignment.center,
        crossAxisAlignment: CrossAxisAlignment.center,
        children: new List<Widget> {
          new Text (
            "UIWidgets for Unity & C#!",
            textAlign: TextAlign.center
          ),
          new Text (
            "Inspired by Flutter ❤",
            textAlign: TextAlign.center
          )
        }
      )
    )
  );
}

Layout widgets for Grids

Made with Slides.com