Ionic 2 - Developing A Real-World Mobile App

preview_player
Показать описание
Ionic 2 - Developing A Real-World Mobile App

The final release of Ionic 2 is out and building modern hybrid mobile apps has become easier and more powerful. Ionic 2 is a complete re-design and re-implementation of the great Ionic framework and is now based on Angular 2. With that new version the Ionic team has improved performance, reduced the complexity of code you need to write, and made it possible to build completely bespoke apps with your existing web development skill set.

In this tutorial you'll walk through a practical sample and build a real-world Ionic 2 mobile app with external API access.

Musik:
Night Owl by Broke For Free is licensed under a Creative Commons Attribution License.
Рекомендации по теме
Комментарии
Автор

Very valuable information. Easy but useful example with Github API. Thanks a lot for the effort making this video.

beto.aveiga
Автор

Nice tutorial! I've learnt too much with your tuto ^^

JoanColmenero
Автор

Thank you so much, Sebastian. I really like your tutorials. Just finished working on your "Pure JavaScript" project, and planning on watching every single video on your channel. Please keep up the great works :)
P.S. would it be possible to increase the font size in your editor in the next videos, that will greatly help us to follow and code along with you :)

alitayeh
Автор

very nice tutorial. .thank you
please create new tutorial. .how to ionic 2 andriod first page loading performance fast...becoz iconic 2 app on this take 6 or 8 seconds app on performance time very slow blank app on ionic 2 ...I hope u will create this video. .u have any idea please create video

majeedk
Автор

Thanks A lot. Made to the end of this without any issues. Great Stuff.

Justinwk
Автор

Thank you very much for the detailed and descriptive tutorial..appreciate the hard work.

viewandhra
Автор

I have a question, can ionic cater for tablet view?

ecasanes
Автор

hi sir my ionic g provider github-serve is not getting installed in node command prompt what should i do for that please guide me

neeluzcreationz
Автор

After I install everything and then run the command "ionic serve" I get the response "-bash: ionic: Command not found".. What did I do wrong?

KeithKingSD
Автор

This was an Awesome tutorial, Good job.

mahmoudtokura
Автор

Great man!! just do one tuto about rails backend and authentication with devise plz man ;)

amedeoss
Автор

Men Nice video, You can do some videos to use Sqlite and MySQL

felipevl
Автор

one more update on the baseurl. it should be (you should concatenate the '/' in the url)

this.http.get(this.baseUrl + '/'+ username + '/repos')
.map(res => res.json());

ismartlife
Автор

I got an error
I passed GithibService to the array of providers and I got an error
Please help me out

darlingtonchukwudi
Автор

if you are getting Runtime Error Uncaught (in promise): Error: No provider for Http.... follow this

accepted


Providers have Http included by default, and in order to use Http in your app you will need to add the HttpModule to your app.module.ts:

...
imports: [
BrowserModule,
HttpModule,
IonicModule.forRoot(MyApp),
IonicStorageModule.forRoot()
],

ismartlife