Difference between Angular Dart and Polymer Dart

angular-dart, dart, dart-polymer

Solution

There is a recent demo that shows how to combine Polymer's elements with Angular for routing and other app logic.

It looks fun, but I am not sure whether as of today the generated js code size is reasonable enough.

https://github.com/sethladd/dart-angular-polymer-data-binding

Slides for an accompanying talk: https://docs.google.com/file/d/0B3tMhVSd9MFIV0xfRm5NZ0VpNzg/edit Blog with a summary: http://blog.sethladd.com/2014/02/angular-and-polymer-data-binding.html

Slide 66:

Problem

Angular gives you the possibility of dynamic two-way-data-binding. But it allows you also to create custom elements and directives. So, if I use Angular in Dart, there is no need for Polymer any more, is it right?

Original source

Related problems