SlideShare une entreprise Scribd logo
1  sur  18
Télécharger pour lire hors ligne
IONIC 2 - THE JOURNEY
CONTINUES..
ruby developersameera (sam)
REINTERACTIVE
WHAT IS A HYBRID MOBILE APP?
Mobile apps build with web technologies like HTML, CSS,
and JavaScript
WHAT IS A IONIC
Hybrid mobile framework build on top of AngularJS
http://ionicframework.com/
WHY IONIC 2 ?
2.0.0-BETA.1
OK, LETS START...
disclaimer
https://github.com/driftyco/ionic/tree/2.0
npm install -g ionic@beta
ionic start demoProject blank --v2 --ts
CREATING A NEW PROJECT
ionic generate page search
ionic generate --list
GENERATORS
support native look and feel
LOOK & FEEL
app.variables.scss
app.core.scss
app.ios.scss / app.md.scss
home.scss
ionic serve -l
HOW TO CHECK
#ionic1
var app = angular.module('ionicApp', ['ionic'])
app.config(function($stateProvider, $urlRouterProvider) {
$urlRouterProvider.otherwise('/')
$stateProvider.state('home', {
url: '/',
template: '<p>Hello, world!</p>'
})
})
ROUTING
no more $urlRouterProvider
no more urls
#ionic 2
export class StartPage {
constructor(nav: NavController) {
this.nav = nav;
}
goBack(){
this.nav.pop();
}
goToOtherPage(){
//push another page onto the history stack
//causing the nav controller to animate the new page in
this.nav.push(OtherPage);
}
ROUTING WITH IONIC2
Using NavController
uses basic push() and pop()
No more
ACCESSING NATIVE API
ngcordova.com
plugins will support as a first class citizen in ionic2
..so it will be like..
#https://github.com/marcusasplund/ionic2-camera-demo/blob/master/app/pages/
takePhoto() {
this.platform.ready().then(() => {
let options = {
quality: 80,
destinationType: Camera.DestinationType.DATA_URL,
sourceType: Camera.PictureSourceType.CAMERA,
allowEdit: false,
encodingType: Camera.EncodingType.JPEG,
saveToPhotoAlbum: false
};
// https://github.com/apache/cordova-plugin-camera#module_camera.getPic
navigator.camera.getPicture(
(data) => {
let imagedata = "data:image/jpeg;base64," + data;
this._zone.run(()=> this.images.unshift({
but.. for now.. (ionic 2 beta.1)
#https://blog.nraboy.com/2016/01/show-native-toast-notifications-in-an-ionic-
import {Page, Platform} from 'ionic/ionic';
@Page({
templateUrl: 'build/pages/home/home.html',
})
export class HomePage {
constructor(platform: Platform) {
this.platform = platform;
}
showToast(message, position) {
this.platform.ready().then(() => {
window.plugins.toast.show(message, "short", position);
});
WHERE TO GET HELP
40+ Ionic Framework 2 Resources (http://mcgivery.com/15-
ionic-framework-2-resources/)
http://ionicframework.com/docs/v2/
https://forum.ionicframework.com
http://www.joshmorony.com/
https://blog.nraboy.com
http://gonehybrid.com/
https://www.packtpub.com *
THANK YOU
QUESTIONS ?

Contenu connexe

Tendances

Mobile Applications with Angular 4 and Ionic 3
Mobile Applications with Angular 4 and Ionic 3Mobile Applications with Angular 4 and Ionic 3
Mobile Applications with Angular 4 and Ionic 3Oleksandr Tryshchenko
 
Ionic Framework: Let's build amazing apps. No Excuses!
Ionic Framework: Let's build amazing apps. No Excuses!Ionic Framework: Let's build amazing apps. No Excuses!
Ionic Framework: Let's build amazing apps. No Excuses!Matheus Cardoso
 
Ionic Crash Course! Hack-a-ton SF
Ionic Crash Course! Hack-a-ton SFIonic Crash Course! Hack-a-ton SF
Ionic Crash Course! Hack-a-ton SFLukas Ruebbelke
 
Ionic CLI Adventures
Ionic CLI AdventuresIonic CLI Adventures
Ionic CLI AdventuresJuarez Filho
 
Ionic2 - the raise of web developer, Riviera DEV le 17/06/2016
Ionic2 - the raise of web developer, Riviera DEV le 17/06/2016Ionic2 - the raise of web developer, Riviera DEV le 17/06/2016
Ionic2 - the raise of web developer, Riviera DEV le 17/06/2016Loïc Knuchel
 
Developing Hybrid Applications with IONIC
Developing Hybrid Applications with IONICDeveloping Hybrid Applications with IONIC
Developing Hybrid Applications with IONICFuat Buğra AYDIN
 
Ionic2, les développeurs web à l'assaut du mobile, BDX I/O le 21/10/2016
Ionic2, les développeurs web à l'assaut du mobile, BDX I/O le 21/10/2016Ionic2, les développeurs web à l'assaut du mobile, BDX I/O le 21/10/2016
Ionic2, les développeurs web à l'assaut du mobile, BDX I/O le 21/10/2016Loïc Knuchel
 
Cross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic FrameworkCross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic FrameworkTroy Miles
 
Cordova, Angularjs & Ionic @ Codeaholics
Cordova, Angularjs & Ionic @ CodeaholicsCordova, Angularjs & Ionic @ Codeaholics
Cordova, Angularjs & Ionic @ CodeaholicsEddie Lau
 
Creating mobile apps - an introduction to Ionic (Engage 2016)
Creating mobile apps - an introduction to Ionic (Engage 2016)Creating mobile apps - an introduction to Ionic (Engage 2016)
Creating mobile apps - an introduction to Ionic (Engage 2016)Mark Leusink
 
Creating an hybrid app in minutes with Ionic Framework
Creating an hybrid app in minutes with Ionic FrameworkCreating an hybrid app in minutes with Ionic Framework
Creating an hybrid app in minutes with Ionic FrameworkJulien Renaux
 
App forum2015 London - Building RhoMobile Applications with Ionic
App forum2015 London - Building RhoMobile Applications with IonicApp forum2015 London - Building RhoMobile Applications with Ionic
App forum2015 London - Building RhoMobile Applications with Ionicrobgalvinjr
 
Ionic framework one day training
Ionic framework one day trainingIonic framework one day training
Ionic framework one day trainingTroy Miles
 
Introduction to Ionic framework
Introduction to Ionic frameworkIntroduction to Ionic framework
Introduction to Ionic frameworkShyjal Raazi
 

Tendances (20)

Mobile Applications with Angular 4 and Ionic 3
Mobile Applications with Angular 4 and Ionic 3Mobile Applications with Angular 4 and Ionic 3
Mobile Applications with Angular 4 and Ionic 3
 
Ionic Framework: Let's build amazing apps. No Excuses!
Ionic Framework: Let's build amazing apps. No Excuses!Ionic Framework: Let's build amazing apps. No Excuses!
Ionic Framework: Let's build amazing apps. No Excuses!
 
Ionic Framework
Ionic FrameworkIonic Framework
Ionic Framework
 
Ionic Crash Course! Hack-a-ton SF
Ionic Crash Course! Hack-a-ton SFIonic Crash Course! Hack-a-ton SF
Ionic Crash Course! Hack-a-ton SF
 
Ionic CLI Adventures
Ionic CLI AdventuresIonic CLI Adventures
Ionic CLI Adventures
 
Ionic2 - the raise of web developer, Riviera DEV le 17/06/2016
Ionic2 - the raise of web developer, Riviera DEV le 17/06/2016Ionic2 - the raise of web developer, Riviera DEV le 17/06/2016
Ionic2 - the raise of web developer, Riviera DEV le 17/06/2016
 
How to setup ionic 2
How to setup ionic 2How to setup ionic 2
How to setup ionic 2
 
Welcome to ionic 2
Welcome to ionic 2Welcome to ionic 2
Welcome to ionic 2
 
Developing Hybrid Applications with IONIC
Developing Hybrid Applications with IONICDeveloping Hybrid Applications with IONIC
Developing Hybrid Applications with IONIC
 
Ionic2, les développeurs web à l'assaut du mobile, BDX I/O le 21/10/2016
Ionic2, les développeurs web à l'assaut du mobile, BDX I/O le 21/10/2016Ionic2, les développeurs web à l'assaut du mobile, BDX I/O le 21/10/2016
Ionic2, les développeurs web à l'assaut du mobile, BDX I/O le 21/10/2016
 
Hybrid app development with ionic
Hybrid app development with ionicHybrid app development with ionic
Hybrid app development with ionic
 
Cross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic FrameworkCross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic Framework
 
Ionic Framework
Ionic FrameworkIonic Framework
Ionic Framework
 
Cordova, Angularjs & Ionic @ Codeaholics
Cordova, Angularjs & Ionic @ CodeaholicsCordova, Angularjs & Ionic @ Codeaholics
Cordova, Angularjs & Ionic @ Codeaholics
 
Workshop Ionic Framework - CC FE & UX
Workshop Ionic Framework - CC FE & UXWorkshop Ionic Framework - CC FE & UX
Workshop Ionic Framework - CC FE & UX
 
Creating mobile apps - an introduction to Ionic (Engage 2016)
Creating mobile apps - an introduction to Ionic (Engage 2016)Creating mobile apps - an introduction to Ionic (Engage 2016)
Creating mobile apps - an introduction to Ionic (Engage 2016)
 
Creating an hybrid app in minutes with Ionic Framework
Creating an hybrid app in minutes with Ionic FrameworkCreating an hybrid app in minutes with Ionic Framework
Creating an hybrid app in minutes with Ionic Framework
 
App forum2015 London - Building RhoMobile Applications with Ionic
App forum2015 London - Building RhoMobile Applications with IonicApp forum2015 London - Building RhoMobile Applications with Ionic
App forum2015 London - Building RhoMobile Applications with Ionic
 
Ionic framework one day training
Ionic framework one day trainingIonic framework one day training
Ionic framework one day training
 
Introduction to Ionic framework
Introduction to Ionic frameworkIntroduction to Ionic framework
Introduction to Ionic framework
 

En vedette

Design and Prototypical Implementation of a Mobile Healthcare Application: He...
Design and Prototypical Implementation of a Mobile Healthcare Application: He...Design and Prototypical Implementation of a Mobile Healthcare Application: He...
Design and Prototypical Implementation of a Mobile Healthcare Application: He...Rahenul Islam
 
Comeniuse algus - esimene ülesanne
Comeniuse algus - esimene ülesanneComeniuse algus - esimene ülesanne
Comeniuse algus - esimene ülesanneLjubov Fedotova
 
AZTC Lunch & Learn - 5 Most Significant Challenges Facing B2B Marketers
AZTC Lunch & Learn - 5 Most Significant Challenges Facing B2B MarketersAZTC Lunch & Learn - 5 Most Significant Challenges Facing B2B Marketers
AZTC Lunch & Learn - 5 Most Significant Challenges Facing B2B MarketersKEO Marketing Inc
 
A tech firm with a balance sheet - Analytics in Financial Services
A tech firm with a balance sheet - Analytics in Financial ServicesA tech firm with a balance sheet - Analytics in Financial Services
A tech firm with a balance sheet - Analytics in Financial ServicesStavros Apostolou
 
liofsocialemedia
liofsocialemedialiofsocialemedia
liofsocialemediaVRmaster
 
Fit For 21st Century
Fit For 21st CenturyFit For 21st Century
Fit For 21st Centurykensankson
 
Candidateintro 2011
Candidateintro 2011Candidateintro 2011
Candidateintro 2011kensankson
 
Match Foundation Business Executive Summary 12012008
Match Foundation Business Executive Summary 12012008Match Foundation Business Executive Summary 12012008
Match Foundation Business Executive Summary 12012008David Paschane, Ph.D.
 
e-Healthcare Infrastructural Research
e-Healthcare Infrastructural Researche-Healthcare Infrastructural Research
e-Healthcare Infrastructural ResearchDavid Paschane, Ph.D.
 
Add slideshare 2 facebook fanpage
Add slideshare 2 facebook fanpageAdd slideshare 2 facebook fanpage
Add slideshare 2 facebook fanpageVRmaster
 

En vedette (20)

Design and Prototypical Implementation of a Mobile Healthcare Application: He...
Design and Prototypical Implementation of a Mobile Healthcare Application: He...Design and Prototypical Implementation of a Mobile Healthcare Application: He...
Design and Prototypical Implementation of a Mobile Healthcare Application: He...
 
299
299299
299
 
Comeniuse algus - esimene ülesanne
Comeniuse algus - esimene ülesanneComeniuse algus - esimene ülesanne
Comeniuse algus - esimene ülesanne
 
Health Outcome Infrastructure 1.2
Health Outcome Infrastructure 1.2Health Outcome Infrastructure 1.2
Health Outcome Infrastructure 1.2
 
AZTC Lunch & Learn - 5 Most Significant Challenges Facing B2B Marketers
AZTC Lunch & Learn - 5 Most Significant Challenges Facing B2B MarketersAZTC Lunch & Learn - 5 Most Significant Challenges Facing B2B Marketers
AZTC Lunch & Learn - 5 Most Significant Challenges Facing B2B Marketers
 
JobVille
JobVilleJobVille
JobVille
 
Lingua galega e axentes culturais. Luís Bará
Lingua galega e axentes culturais. Luís BaráLingua galega e axentes culturais. Luís Bará
Lingua galega e axentes culturais. Luís Bará
 
A tech firm with a balance sheet - Analytics in Financial Services
A tech firm with a balance sheet - Analytics in Financial ServicesA tech firm with a balance sheet - Analytics in Financial Services
A tech firm with a balance sheet - Analytics in Financial Services
 
liofsocialemedia
liofsocialemedialiofsocialemedia
liofsocialemedia
 
8marts2011
8marts20118marts2011
8marts2011
 
Os dereitos lingüísticos na Universidade da Coruña
Os dereitos lingüísticos na Universidade da CoruñaOs dereitos lingüísticos na Universidade da Coruña
Os dereitos lingüísticos na Universidade da Coruña
 
الضمائر
الضمائرالضمائر
الضمائر
 
2012 Government Bureaucracy Survey
2012 Government Bureaucracy Survey2012 Government Bureaucracy Survey
2012 Government Bureaucracy Survey
 
Fit For 21st Century
Fit For 21st CenturyFit For 21st Century
Fit For 21st Century
 
Kihid1
Kihid1Kihid1
Kihid1
 
Candidateintro 2011
Candidateintro 2011Candidateintro 2011
Candidateintro 2011
 
Match Foundation Business Executive Summary 12012008
Match Foundation Business Executive Summary 12012008Match Foundation Business Executive Summary 12012008
Match Foundation Business Executive Summary 12012008
 
e-Healthcare Infrastructural Research
e-Healthcare Infrastructural Researche-Healthcare Infrastructural Research
e-Healthcare Infrastructural Research
 
Add slideshare 2 facebook fanpage
Add slideshare 2 facebook fanpageAdd slideshare 2 facebook fanpage
Add slideshare 2 facebook fanpage
 
Integrless
IntegrlessIntegrless
Integrless
 

Similaire à Ionic2 the the journey continues ng-sydney 02-03-16 and ionicaustralia 23-03-16

Introdução Ionic Framework - Meetup SP
Introdução Ionic Framework - Meetup SPIntrodução Ionic Framework - Meetup SP
Introdução Ionic Framework - Meetup SPLivio Alves, MBA
 
Building Mobile Apps With Ionic & Loopback
Building Mobile Apps With Ionic & LoopbackBuilding Mobile Apps With Ionic & Loopback
Building Mobile Apps With Ionic & LoopbackChibuzor Obiora
 
Rapid mobile app development using Ionic framework
Rapid mobile app development using Ionic frameworkRapid mobile app development using Ionic framework
Rapid mobile app development using Ionic frameworkSwaminathan Vetri
 
Intro to mobile apps with the ionic framework & angular js
Intro to mobile apps with the ionic framework & angular jsIntro to mobile apps with the ionic framework & angular js
Intro to mobile apps with the ionic framework & angular jsHector Iribarne
 
Ionic Framework - Intro to Hybrid Mobile Application Development
Ionic Framework - Intro to Hybrid Mobile Application DevelopmentIonic Framework - Intro to Hybrid Mobile Application Development
Ionic Framework - Intro to Hybrid Mobile Application DevelopmentMax Kaplan
 
Angularjs Tutorial for Beginners
Angularjs Tutorial for BeginnersAngularjs Tutorial for Beginners
Angularjs Tutorial for Beginnersrajkamaltibacademy
 
Tutorial: Develop Mobile Applications with AngularJS
Tutorial: Develop Mobile Applications with AngularJSTutorial: Develop Mobile Applications with AngularJS
Tutorial: Develop Mobile Applications with AngularJSPhilipp Burgmer
 
Ionic - Hybrid Mobile Application Framework
Ionic - Hybrid Mobile Application FrameworkIonic - Hybrid Mobile Application Framework
Ionic - Hybrid Mobile Application FrameworkSanjay Kumar
 
Ionic, ce n'est pas que de l'UI, meetup PhoneGap le 25-05-2015
Ionic, ce n'est pas que de l'UI, meetup PhoneGap le 25-05-2015Ionic, ce n'est pas que de l'UI, meetup PhoneGap le 25-05-2015
Ionic, ce n'est pas que de l'UI, meetup PhoneGap le 25-05-2015Loïc Knuchel
 
Cross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic FrameworkCross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic FrameworkTroy Miles
 
Ionic Mobile Applications - Hybrid Mobile Applications Without Compromises
Ionic Mobile Applications - Hybrid Mobile Applications Without CompromisesIonic Mobile Applications - Hybrid Mobile Applications Without Compromises
Ionic Mobile Applications - Hybrid Mobile Applications Without CompromisesJacob Friesen
 
Mobile App Development with Ionic, React Native, and JHipster - Connect.Tech ...
Mobile App Development with Ionic, React Native, and JHipster - Connect.Tech ...Mobile App Development with Ionic, React Native, and JHipster - Connect.Tech ...
Mobile App Development with Ionic, React Native, and JHipster - Connect.Tech ...Matt Raible
 
Mobile UX Prototyping with Ionic
Mobile UX Prototyping with IonicMobile UX Prototyping with Ionic
Mobile UX Prototyping with IonicMatthew Sital-Singh
 

Similaire à Ionic2 the the journey continues ng-sydney 02-03-16 and ionicaustralia 23-03-16 (20)

Introdução Ionic Framework - Meetup SP
Introdução Ionic Framework - Meetup SPIntrodução Ionic Framework - Meetup SP
Introdução Ionic Framework - Meetup SP
 
Building Mobile Apps With Ionic & Loopback
Building Mobile Apps With Ionic & LoopbackBuilding Mobile Apps With Ionic & Loopback
Building Mobile Apps With Ionic & Loopback
 
Ionic2 First Lesson of Four
Ionic2 First Lesson of FourIonic2 First Lesson of Four
Ionic2 First Lesson of Four
 
Rapid mobile app development using Ionic framework
Rapid mobile app development using Ionic frameworkRapid mobile app development using Ionic framework
Rapid mobile app development using Ionic framework
 
Ionic framework
Ionic frameworkIonic framework
Ionic framework
 
IONIC - Hybrid Mobile App Development
IONIC - Hybrid Mobile App DevelopmentIONIC - Hybrid Mobile App Development
IONIC - Hybrid Mobile App Development
 
Intro to mobile apps with the ionic framework & angular js
Intro to mobile apps with the ionic framework & angular jsIntro to mobile apps with the ionic framework & angular js
Intro to mobile apps with the ionic framework & angular js
 
Ionic Framework - Intro to Hybrid Mobile Application Development
Ionic Framework - Intro to Hybrid Mobile Application DevelopmentIonic Framework - Intro to Hybrid Mobile Application Development
Ionic Framework - Intro to Hybrid Mobile Application Development
 
Ionic Framework
Ionic FrameworkIonic Framework
Ionic Framework
 
Workshop 15: Ionic framework
Workshop 15: Ionic frameworkWorkshop 15: Ionic framework
Workshop 15: Ionic framework
 
Ionic
IonicIonic
Ionic
 
Angularjs Tutorial for Beginners
Angularjs Tutorial for BeginnersAngularjs Tutorial for Beginners
Angularjs Tutorial for Beginners
 
Tutorial: Develop Mobile Applications with AngularJS
Tutorial: Develop Mobile Applications with AngularJSTutorial: Develop Mobile Applications with AngularJS
Tutorial: Develop Mobile Applications with AngularJS
 
Ionic - Hybrid Mobile Application Framework
Ionic - Hybrid Mobile Application FrameworkIonic - Hybrid Mobile Application Framework
Ionic - Hybrid Mobile Application Framework
 
An overview of Ionic
An overview of IonicAn overview of Ionic
An overview of Ionic
 
Ionic, ce n'est pas que de l'UI, meetup PhoneGap le 25-05-2015
Ionic, ce n'est pas que de l'UI, meetup PhoneGap le 25-05-2015Ionic, ce n'est pas que de l'UI, meetup PhoneGap le 25-05-2015
Ionic, ce n'est pas que de l'UI, meetup PhoneGap le 25-05-2015
 
Cross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic FrameworkCross Platform Mobile Apps with the Ionic Framework
Cross Platform Mobile Apps with the Ionic Framework
 
Ionic Mobile Applications - Hybrid Mobile Applications Without Compromises
Ionic Mobile Applications - Hybrid Mobile Applications Without CompromisesIonic Mobile Applications - Hybrid Mobile Applications Without Compromises
Ionic Mobile Applications - Hybrid Mobile Applications Without Compromises
 
Mobile App Development with Ionic, React Native, and JHipster - Connect.Tech ...
Mobile App Development with Ionic, React Native, and JHipster - Connect.Tech ...Mobile App Development with Ionic, React Native, and JHipster - Connect.Tech ...
Mobile App Development with Ionic, React Native, and JHipster - Connect.Tech ...
 
Mobile UX Prototyping with Ionic
Mobile UX Prototyping with IonicMobile UX Prototyping with Ionic
Mobile UX Prototyping with Ionic
 

Dernier

CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun serviceanilsa9823
 
Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...
Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...
Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...Niamh verma
 
Powerful Love Spells in Arkansas, AR (310) 882-6330 Bring Back Lost Lover
Powerful Love Spells in Arkansas, AR (310) 882-6330 Bring Back Lost LoverPowerful Love Spells in Arkansas, AR (310) 882-6330 Bring Back Lost Lover
Powerful Love Spells in Arkansas, AR (310) 882-6330 Bring Back Lost LoverPsychicRuben LoveSpells
 
哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...
哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...
哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...wyqazy
 
9892124323 | Book Call Girls in Juhu and escort services 24x7
9892124323 | Book Call Girls in Juhu and escort services 24x79892124323 | Book Call Girls in Juhu and escort services 24x7
9892124323 | Book Call Girls in Juhu and escort services 24x7Pooja Nehwal
 
Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,
Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,
Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,Pooja Nehwal
 
CALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual serviceCALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual serviceanilsa9823
 
Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝soniya singh
 

Dernier (8)

CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Gomti Nagar Lucknow best Night Fun service
 
Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...
Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...
Chandigarh Call Girls Service ❤️🍑 9115573837 👄🫦Independent Escort Service Cha...
 
Powerful Love Spells in Arkansas, AR (310) 882-6330 Bring Back Lost Lover
Powerful Love Spells in Arkansas, AR (310) 882-6330 Bring Back Lost LoverPowerful Love Spells in Arkansas, AR (310) 882-6330 Bring Back Lost Lover
Powerful Love Spells in Arkansas, AR (310) 882-6330 Bring Back Lost Lover
 
哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...
哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...
哪里有卖的《俄亥俄大学学历证书+俄亥俄大学文凭证书+俄亥俄大学学位证书》Q微信741003700《俄亥俄大学学位证书复制》办理俄亥俄大学毕业证成绩单|购买...
 
9892124323 | Book Call Girls in Juhu and escort services 24x7
9892124323 | Book Call Girls in Juhu and escort services 24x79892124323 | Book Call Girls in Juhu and escort services 24x7
9892124323 | Book Call Girls in Juhu and escort services 24x7
 
Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,
Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,
Call US Pooja 9892124323 ✓Call Girls In Mira Road ( Mumbai ) secure service,
 
CALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual serviceCALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual service
CALL ON ➥8923113531 🔝Call Girls Saharaganj Lucknow best sexual service
 
Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Shalimar Bagh Delhi reach out to us at 🔝8264348440🔝
 

Ionic2 the the journey continues ng-sydney 02-03-16 and ionicaustralia 23-03-16

  • 1. IONIC 2 - THE JOURNEY CONTINUES..
  • 4. WHAT IS A HYBRID MOBILE APP? Mobile apps build with web technologies like HTML, CSS, and JavaScript
  • 5. WHAT IS A IONIC Hybrid mobile framework build on top of AngularJS http://ionicframework.com/
  • 8. npm install -g ionic@beta ionic start demoProject blank --v2 --ts CREATING A NEW PROJECT
  • 9. ionic generate page search ionic generate --list GENERATORS
  • 10. support native look and feel LOOK & FEEL app.variables.scss app.core.scss app.ios.scss / app.md.scss home.scss
  • 11. ionic serve -l HOW TO CHECK
  • 12. #ionic1 var app = angular.module('ionicApp', ['ionic']) app.config(function($stateProvider, $urlRouterProvider) { $urlRouterProvider.otherwise('/') $stateProvider.state('home', { url: '/', template: '<p>Hello, world!</p>' }) }) ROUTING no more $urlRouterProvider no more urls
  • 13. #ionic 2 export class StartPage { constructor(nav: NavController) { this.nav = nav; } goBack(){ this.nav.pop(); } goToOtherPage(){ //push another page onto the history stack //causing the nav controller to animate the new page in this.nav.push(OtherPage); } ROUTING WITH IONIC2 Using NavController uses basic push() and pop()
  • 14. No more ACCESSING NATIVE API ngcordova.com plugins will support as a first class citizen in ionic2
  • 15. ..so it will be like.. #https://github.com/marcusasplund/ionic2-camera-demo/blob/master/app/pages/ takePhoto() { this.platform.ready().then(() => { let options = { quality: 80, destinationType: Camera.DestinationType.DATA_URL, sourceType: Camera.PictureSourceType.CAMERA, allowEdit: false, encodingType: Camera.EncodingType.JPEG, saveToPhotoAlbum: false }; // https://github.com/apache/cordova-plugin-camera#module_camera.getPic navigator.camera.getPicture( (data) => { let imagedata = "data:image/jpeg;base64," + data; this._zone.run(()=> this.images.unshift({
  • 16. but.. for now.. (ionic 2 beta.1) #https://blog.nraboy.com/2016/01/show-native-toast-notifications-in-an-ionic- import {Page, Platform} from 'ionic/ionic'; @Page({ templateUrl: 'build/pages/home/home.html', }) export class HomePage { constructor(platform: Platform) { this.platform = platform; } showToast(message, position) { this.platform.ready().then(() => { window.plugins.toast.show(message, "short", position); });
  • 17. WHERE TO GET HELP 40+ Ionic Framework 2 Resources (http://mcgivery.com/15- ionic-framework-2-resources/) http://ionicframework.com/docs/v2/ https://forum.ionicframework.com http://www.joshmorony.com/ https://blog.nraboy.com http://gonehybrid.com/ https://www.packtpub.com *