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

Go Native(-ish)! (PrairieDevCon 2014)

timgthomas
April 07, 2014

Go Native(-ish)! (PrairieDevCon 2014)

We've all heard the arguments of “Web vs. Native vs. Hybrid” mobile apps, but there's simply not enough time to learn it all. What if you're already an experienced Web developer, and you want to reuse as many of your skills as possible, yet still end up with a native-looking app? Fear not, for mobile devices can be a Web developer's best friend. In this presentation, you'll see how easy it is to make your Web app look—and behave—like its native cousins. We'll discuss UX principles, development techniques, interactions and behaviors, and testing and debugging...and help your Web app go native(-ish)!

timgthomas

April 07, 2014
Tweet

More Decks by timgthomas

Other Decks in Design

Transcript

  1. Home Screen Icons ! <link rel="apple-touch-icon" href="icon.png"> ! <link rel="icon"

    href="icon.png"> ! <link rel="apple-touch-icon" sizes="152x152" href="icon.png">
  2. Local Storage localStorage['tea'] = '{ "type":"Earl Grey" }'; ! console.log(localStorage['tea']);

    ! //> { "type":"Earl Grey" } ! console.log(JSON.parse(localStorage['tea']); ! //> Object { type: 'Earl Grey' }