Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Cross-Platform App Entwicklung mit Ionic

Cross-Platform App Entwicklung mit Ionic

Hybrid Heroes

December 12, 2018
Tweet

More Decks by Hybrid Heroes

Other Decks in Programming

Transcript

  1. Christian Justus • Partner und Tech Lead bei Hybrid Heroes

    • Spezialisiert auf Cross-Platform Apps auf Basis von Webtechnologien • Ionic Trusted Partner
  2. Am Anfang war eine App-Idee ... A) Serious Game B)

    Foto Community C) Streaming Suchmaschine D) News App
  3. TODO * [ ] Know How * [ ] iOS

    * [ ] Android * [ ] Web * [ ] Geolocation * [ ] Push Benachrichtigungen * [ ] Offline-Funktionaliät * [ ] Gute Performance * [ ] In 3 Monaten fertig werden
  4. @Component({ selector: 'app-home', template: ` <ion-content> <ion-button class="hello-button" (click)="presentToast()"> Hello

    World!</ion-button> </ion-content> `, styles: ` .hello-button { --width: 200px; } ` }) export class HomePage { constructor(private toastCtrl: ToastController) {} async presentToast() { const toast = await this.toastCtrl.create({ message: 'Hello World!', position: 'middle' }); toast.present(); } }
  5. State of Progressive Web Apps* Voll unterstützt Home Screen Icon,

    Vollbild, Ortungsdienste, Media Capture, Payment Teilweise unterstützt ⚠ Offline, Push Benachrichtigungen, App Banner, Bluetooth * https://whatwebcando.today
  6. TODO * [X] Know How * [X] iOS * [X]

    Android * [X] Web * [X] Geolocation * [X] Push Benachrichtiungen * [X] Offline-Funktionaliät * [X] Gute Performance * [X] Fertig in 3 Monaten