Any UI control framework for DART? [duplicate] Any UI control framework for DART? [duplicate] dart dart

Any UI control framework for DART? [duplicate]


There is Polymer.dart https://www.dartlang.org/polymer-dart/. It's a Dart port of polymer project http://www.polymer-project.org/.

You can check out the status of the port here https://www.dartlang.org/polymer-dart/#polymer-parity. Polymer ui elements are not yet available in Polymer.dart.


I have used the Dart Web Toolkit (DWT) with some success. It does have a grid component, as well as a tab layout panel (which I used). I imagine these can be styled how you'd need them to have a similar look-and-feel as the Sencha ExtJS if that is what you are looking for.

You can look at DWT here: http://dartwebtoolkit.com/

From that page, you can look at a showcase and the API. It is essentially a port of Google Web Toolkit, and I've found that exploring both will give a better idea of how to use DWT.

For what it is worth, DWT also seems to play well with the regular dart:html stuff as well. So if there isn't something in DWT, but you can build the HTML elements in code, you can use them together fairly well. I've not had any real success merging Dart-Polymer with anything in Dart other than generic stuff. However, that is just my experience, and limited with Polymer at that.