Differences between dart web ui and dart polymer Differences between dart web ui and dart polymer dart dart

Differences between dart web ui and dart polymer


Polymer.dart is basically just a new name for Web UI.

Web UI was always attempting to implement the new web standards and MDV, as was the Polymer project. There are two main benefits to directly porting Polymer and its polyfills to Dart:

  1. It's easier to make sure the implementation is complete and compatible. Any small changes in syntax or features that Polymer.dart introduces would have had to have been implement in Web UI anyway.
  2. The implementation is more focused on runtime features, rather than compile-time, so it greatly reduces the need for a build step during development. That's a huge win, IMO.