| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: default | 2 layout: default |
| 3 title: "Web UI Package" | 3 title: "Web UI Package" |
| 4 rel: | 4 rel: |
| 5 author: sigmund-cherem | 5 author: sigmund-cherem |
| 6 description: "Use web components and templates today with Dart. This brief | 6 description: "Use web components and templates today with Dart. This brief |
| 7 introduction shows you how to use the features of tomorrow, today." | 7 introduction shows you how to use the features of tomorrow, today." |
| 8 has-permalinks: true | 8 has-permalinks: true |
| 9 --- | 9 --- |
| 10 {% comment %} | 10 {% comment %} |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 and cool ideas have been proposed, such as [model-driven views][mdv] (MDV). | 80 and cool ideas have been proposed, such as [model-driven views][mdv] (MDV). |
| 81 | 81 |
| 82 Web UI combines the ideas from web components and MDV, adapting them to work | 82 Web UI combines the ideas from web components and MDV, adapting them to work |
| 83 well with Dart. The package takes advantage of advanced browser features when | 83 well with Dart. The package takes advantage of advanced browser features when |
| 84 possible, emulating missing features when necessary. | 84 possible, emulating missing features when necessary. |
| 85 | 85 |
| 86 This article walks through some examples. For more details, check out our | 86 This article walks through some examples. For more details, check out our |
| 87 [specification](spec.html), the [summary of features](summary.html), and our | 87 [specification](spec.html), the [summary of features](summary.html), and our |
| 88 [installation instructions](tools.html). | 88 [installation instructions](tools.html). |
| 89 | 89 |
| 90 <aside class="alert alert-info"> | |
| 91 <strong>Try our tutorials!</strong> | |
| 92 For a gentle introduction to using Web UI, see the tutorials in | |
| 93 <a href="/docs/tutorials/">A Game of Darts</a>. | |
| 94 Web UI coverage starts in | |
| 95 <a href="/docs/tutorials/web-ui/">Target 6: Get Started with Web UI</a>. | |
| 96 </aside> | |
| 97 | |
| 98 <aside class="alert alert-danger"> | 90 <aside class="alert alert-danger"> |
| 99 <strong>Note:</strong> The examples in this article do not work | 91 <strong>Note:</strong> The examples in this article do not work |
| 100 out of the box in a standard Dart SDK; | 92 out of the box in a standard Dart SDK; |
| 101 you first need to set up the Dart Web UI tools. | 93 you first need to set up the Dart Web UI tools. |
| 102 See the page <a href="tools.html">Tools for Web UI</a> | 94 See the page <a href="tools.html">Tools for Web UI</a> |
| 103 for details on using Dart Editor and command-line scripts | 95 for details on using Dart Editor and command-line scripts |
| 104 to compile code that uses Web UI. | 96 to compile code that uses Web UI. |
| 105 </aside> | 97 </aside> |
| 106 | 98 |
| 107 {% include toc.html %} | 99 {% include toc.html %} |
| (...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 [project]: https://github.com/dart-lang/web-ui/ | 610 [project]: https://github.com/dart-lang/web-ui/ |
| 619 [bugs]: https://github.com/dart-lang/web-ui/issues | 611 [bugs]: https://github.com/dart-lang/web-ui/issues |
| 620 [backbone]: http://backbonejs.org/ | 612 [backbone]: http://backbonejs.org/ |
| 621 [angular]: http://angularjs.org/ | 613 [angular]: http://angularjs.org/ |
| 622 [ember]: http://emberjs.com/ | 614 [ember]: http://emberjs.com/ |
| 623 [todomvcindwc]: https://github.com/dart-lang/web-ui/tree/master/example/todomvc | 615 [todomvcindwc]: https://github.com/dart-lang/web-ui/tree/master/example/todomvc |
| 624 [watcher]: http://dart-lang.github.com/web-ui/docs/watcher.html | 616 [watcher]: http://dart-lang.github.com/web-ui/docs/watcher.html |
| 625 [watcher.dispatch]: http://dart-lang.github.com/web-ui/docs/watcher.html#dispatc
h | 617 [watcher.dispatch]: http://dart-lang.github.com/web-ui/docs/watcher.html#dispatc
h |
| 626 [group]: https://groups.google.com/a/dartlang.org/group/web-ui/topics | 618 [group]: https://groups.google.com/a/dartlang.org/group/web-ui/topics |
| 627 [so]: http://stackoverflow.com/tags/dart | 619 [so]: http://stackoverflow.com/tags/dart |
| OLD | NEW |