OLD | NEW |
1 --- | 1 --- |
2 layout: default | 2 layout: default |
3 title: "Target 5: Install Shared Packages" | 3 title: "Install Shared Packages" |
4 description: "Packages are bundles of source code, tools, and resources that hel
p you to organize and share code" | 4 description: "Packages are bundles of source code, tools, and resources that hel
p you to organize and share code" |
5 has-permalinks: true | 5 has-permalinks: true |
6 tutorial: | 6 tutorial: |
7 id: packages | 7 id: packages |
8 next: web-ui | 8 next: web-ui |
9 next-title: "Get Started with Web UI" | 9 next-title: "Get Started with Web UI" |
10 prev: remove-elements | 10 prev: remove-elements |
11 prev-title: "Remove DOM Elements" | 11 prev-title: "Remove DOM Elements" |
12 --- | 12 --- |
13 | 13 |
(...skipping 14 matching lines...) Expand all Loading... |
28 <li> | 28 <li> |
29 <a href="http://pub.dartlang.org/" | 29 <a href="http://pub.dartlang.org/" |
30 target="_blank">pub.dartlang.org</a> | 30 target="_blank">pub.dartlang.org</a> |
31 </li> | 31 </li> |
32 </ul> | 32 </ul> |
33 | 33 |
34 {% endcapture %} | 34 {% endcapture %} |
35 | 35 |
36 {% capture content %} | 36 {% capture content %} |
37 | 37 |
| 38 <div class="tute-target-title"> |
| 39 <h1>{{page.title}}</h1> |
| 40 <h3>Borrow and share code.</h3> |
| 41 </div> |
| 42 |
38 Now that you're able to create and run a Dart application | 43 Now that you're able to create and run a Dart application |
39 and have a basic understanding of DOM programming, | 44 and have a basic understanding of DOM programming, |
40 you are ready to leverage code written by other programmers. | 45 you are ready to leverage code written by other programmers. |
41 Many interesting and useful packages of reusable Dart code | 46 Many interesting and useful packages of reusable Dart code |
42 are available at the | 47 are available at the |
43 <a href="http://pub.dartlang.org/">pub.dartlang.org</a> | 48 <a href="http://pub.dartlang.org/">pub.dartlang.org</a> |
44 repository. | 49 repository. |
45 | 50 |
46 This target shows you how to use `pub`—a package manager | 51 This target shows you how to use `pub`—a package manager |
47 that comes with Dart—to | 52 that comes with Dart—to |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 <a href="http://pub.dartlang.org/packages/web_ui">web_ui</a>—a package | 299 <a href="http://pub.dartlang.org/packages/web_ui">web_ui</a>—a package |
295 created by the Dart team that lets you use Web components and templating. | 300 created by the Dart team that lets you use Web components and templating. |
296 The | 301 The |
297 <a href="/docs/tutorials/web-ui/">next target</a> covers Web UI. | 302 <a href="/docs/tutorials/web-ui/">next target</a> covers Web UI. |
298 </li> | 303 </li> |
299 </ul> | 304 </ul> |
300 | 305 |
301 {% endcapture %} | 306 {% endcapture %} |
302 | 307 |
303 {% include tutorial.html %} | 308 {% include tutorial.html %} |
OLD | NEW |