Skip to content

Commit bac9762

Browse files
committed
Attempting to scaffold out the rest of the guide
1 parent 6e452f1 commit bac9762

File tree

7 files changed

+95
-0
lines changed

7 files changed

+95
-0
lines changed

index.html

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -471,6 +471,47 @@ <h4 class="exercise-start">
471471
<img src="images/chapter2/android/4.png" alt="login 4"></p>
472472
<p>At this point your UI looks good, but the app still doesn&#39;t actually do anything. Let&#39;s look at how you can use JavaScript to add some functionality.</p>
473473

474+
</div>
475+
<div class="chapter">
476+
<h2 id="application-logic">Application Logic</h2>
477+
<h3 id="events-and-data-binding">Events and data binding</h3>
478+
<h3 id="services">Services</h3>
479+
<h3 id="routing">Routing</h3>
480+
481+
</div>
482+
<div class="chapter">
483+
<h2 id="nativescript-modules">NativeScript modules</h2>
484+
<h3 id="dialog">Dialog</h3>
485+
<h3 id="listview">ListView</h3>
486+
<h3 id="gridlayout">GridLayout</h3>
487+
<h3 id="activityindicator">ActivityIndicator</h3>
488+
<h3 id="animations">Animations</h3>
489+
490+
</div>
491+
<div class="chapter">
492+
<h2 id="plugins-and-npm-modules">Plugins and npm modules</h2>
493+
<h3 id="npm-modules">npm modules</h3>
494+
<h3 id="nativescript-plugins">NativeScript plugins</h3>
495+
496+
</div>
497+
<div class="chapter">
498+
<h2 id="running-native-code">Running native code</h2>
499+
<h3 id="accessing-native-apis">Accessing native APIs</h3>
500+
<h3 id="branching-ios-android-code">Branching iOS &amp; Android code</h3>
501+
502+
</div>
503+
<div class="chapter">
504+
<h2 id="next-steps">Next steps</h2>
505+
<p>Your journey with NativeScript is just beginning. Here are some resources to help you figure out where to go from here.</p>
506+
<ul>
507+
<li>Follow <a href="https://twitter.com/nativescript">@nativescript</a> on Twitter for the latest and greatest news about NativeScript.</li>
508+
<li>Join the <a href="http://developer.telerik.com/wp-login.php?action=slack-invitation">NativeScript Community Slack channel</a>. The channel is a great place to ask questions, and chat with others in the NativeScript community.</li>
509+
<li>Subscribe to <a href="https://www.nativescript.org/blog">the NativeScript blog</a> for weekly articles. You can subscribe via RSS or email.</li>
510+
<li>Look through the NativeScript <a href="https://www.nativescript.org/showcases">showcases</a> to get an idea of what people are building.</li>
511+
<li>Check out our <a href="https://www.nativescript.org/resources">resources page</a> to find further NativeScript learning material, such as training, books, and screencasts.</li>
512+
</ul>
513+
<p>Finally, if you find an error in this guide, or have suggestions about how we can make it better, please file those ideas in <a href="https://github.com/tjvantoll/nativescript-angular-guide/issues">this guide&#39;s issue tracker</a> on GitHub.</p>
514+
474515
</div>
475516
</div>
476517
</div>

src/chapters/chapter3.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Application Logic
2+
3+
### Events and data binding
4+
5+
### Services
6+
7+
### Routing

src/chapters/chapter4.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## NativeScript modules
2+
3+
### Dialog
4+
5+
### ListView
6+
7+
### GridLayout
8+
9+
### ActivityIndicator
10+
11+
### Animations

src/chapters/chapter5.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Plugins and npm modules
2+
3+
### npm modules
4+
5+
### NativeScript plugins

src/chapters/chapter6.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Running native code
2+
3+
### Accessing native APIs
4+
5+
### Branching iOS & Android code

src/chapters/chapter7.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Next steps
2+
3+
Your journey with NativeScript is just beginning. Here are some resources to help you figure out where to go from here.
4+
5+
- Follow [@nativescript](https://twitter.com/nativescript) on Twitter for the latest and greatest news about NativeScript.
6+
- Join the [NativeScript Community Slack channel](http://developer.telerik.com/wp-login.php?action=slack-invitation). The channel is a great place to ask questions, and chat with others in the NativeScript community.
7+
- Subscribe to [the NativeScript blog](https://www.nativescript.org/blog) for weekly articles. You can subscribe via RSS or email.
8+
- Look through the NativeScript [showcases](https://www.nativescript.org/showcases) to get an idea of what people are building.
9+
- Check out our [resources page](https://www.nativescript.org/resources) to find further NativeScript learning material, such as training, books, and screencasts.
10+
11+
Finally, if you find an error in this guide, or have suggestions about how we can make it better, please file those ideas in [this guide's issue tracker](https://github.com/tjvantoll/nativescript-angular-guide/issues) on GitHub.

src/index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,21 @@ <h1>Building Apps with NativeScript and Angular 2</h1>
3636
<div class="chapter">
3737
@@include(markdown("chapters/chapter2.md"))
3838
</div>
39+
<div class="chapter">
40+
@@include(markdown("chapters/chapter3.md"))
41+
</div>
42+
<div class="chapter">
43+
@@include(markdown("chapters/chapter4.md"))
44+
</div>
45+
<div class="chapter">
46+
@@include(markdown("chapters/chapter5.md"))
47+
</div>
48+
<div class="chapter">
49+
@@include(markdown("chapters/chapter6.md"))
50+
</div>
51+
<div class="chapter">
52+
@@include(markdown("chapters/chapter7.md"))
53+
</div>
3954
</div>
4055
</div>
4156
</div>

0 commit comments

Comments
 (0)