Hello World: Your First Ionic Framework App
In almost every case of learning a new programming language or framework, the first thing you learn to create is the “hello world” application. This app is the most basic app you can make and is your...
View ArticleHello Backend: Your Second Ionic Framework App
In the first post of this series, Hello World: Your First Ionic Framework App, we learned how to create a basic app with views, routing, and controllers. We will continue with that app structure and...
View ArticleHello Modules: Your Third Ionic Framework App
In the second post of this series, Hello Backend: Your Second Ionic Framework App, we learned how to create an app that talks to a backend API using a factory and the $http service. In this third...
View ArticleHello Master Detail: Your Fourth Ionic Framework App
In the third post of this series, Hello Modules: Your Third Ionic Framework App, we learned how to split up our existing app into a more scaling architecture using modules. In this fourth instalment,...
View ArticleUnderstanding Filters in Ionic
In Angular, a filter is an entity whose sole purpose is to use a function to transform a given value or set of values. Applied to an array, a filter will be run once for each element in the array. In...
View ArticleUnderstanding Ionic 2: Imports
A very important concept in Ionic 1.0 was the concept of modules. This allowed you to build an app in a very modular way making your code organized, reusable, logical, easy to understand, scalable, and...
View ArticleUnderstanding Ionic 2: @App
As discussed in Understanding Ionic 2: Classes, classes are at the center of everything thanks to ES6. These classes use a new syntax called decorators to specify what the purpose of each class is. One...
View ArticleUnderstanding Ionic 2: @Page
As discussed in Understanding Ionic 2: Classes, classes are at the center of everything thanks to ES6. These classes use a new syntax called decorators to specify what the purpose of each class is. One...
View Article60+ Ionic Framework 2 Resources
This list is a an attempt to create a comprehensive list of tutorials that cover as many topics as possible for Ionic version 2. I will update this list as I discover new posts and as new posts are...
View ArticleUnderstanding Ionic 2: @Pipe
As discussed in Understanding Ionic 2: Classes, classes are at the center of everything thanks to ES6. These classes use a new syntax called decorators to specify what the purpose of each class is. One...
View Article