Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ionic: same style for android and iOS

In this video (https://www.youtube.com/watch?v=ZjPRj2Vp74U) Andrew mentions that Ionic builds different element design for each platform. Is it possible to prevent that, so the app looks the same on all platforms?

like image 551
MokaHaiku Avatar asked Feb 03 '15 20:02

MokaHaiku


People also ask

Is Ionic for iOS and Android?

Ionic offers seamless app UX, across iOS, Android, and the Web from a single codebase.

Is Ionic framework cross-platform?

Ionic is built from the ground up to make development easy, no matter what platform you are building for. Ionic apps are truly cross-platform: able to run as an Android, iOS, Electron, and Progressive Web App (PWA), all from a single codebase.

Does Ionic work on iOS?

Because of this foundation in web technologies, Ionic can run anywhere the web runs — iOS, Android, browsers, PWAs, and more.

What is Ionic framework in Android?

Ionic framework is an open-source UI toolkit for building performant, high-quality mobile apps, desktop apps, and progressive web apps using web technologies such as HTML, CSS, and JavaScript. It allows developers to build once and run everywhere.


1 Answers

For Ionic 2.0.0 you can use the config parameter of the IonicModule forRoot method.

IonicModule.forRoot(MyApp, {mode: 'ios'}),
like image 182
0x1ad2 Avatar answered Sep 26 '22 22:09

0x1ad2