The Cordova-enabled WebView may provide the application with its entire user interface. On some platforms, it can also be a component within a larger, hybrid application that mixes the WebView with native application components. (See Embedding WebViews for details.)
Plugins are an integral part of the cordova ecosystem. They provide an interface for Cordova and native components to communicate with each other and bindings to standard device APIs. This enables you to invoke native code from JavaScript.
Cordova Official Web Site
ngCordova
A large set of rich UI components specifically designed for mobile apps
Packed with ready-to-implement features following native iOS and Android design standards
Free to use, 100% open source software (Apache v2 license)
Experience streamlined development with zero-time setup, using the technologies you already know and love - Javascript, HTML and CSS.
A rich variety of UI components specially designed for mobile apps. Onsen UI provides tabs, side menu, stack navigation and tons of other components such as lists and forms. They all have iOS and Android Material design support, with automatic styling that will change the appearance of the app based on the platform. With Onsen UI you can truly support both Android and iOS with the same source code.
Worried that PhoneGap / Cordova apps are slow? Fear not! All animations in Onsen UI have been tuned and optimized to perform well on a wide range of devices. We take great care to ensure that apps made using Onsen UI feel smooth even on lower end devices.
Onsen UI is easy to learn while being a powerful tool to create complex mobile apps. We have lots of learning resources including official documentation, an interactive tutorial and a community forum where your questions get answered.
Under the hood, Onsen UI consists of three layers:
<ons-page ng-controller="PageController as page" class="page ng-scope" shown="">
<ons-toolbar class="toolbar">
<div class="left toolbar__left">
<ons-toolbar-button class="toolbar-button">
<ons-icon icon="ion-chevron-left, material:md-menu" class="ons-icon ion-chevron-left ons-icon--ion"></ons-icon>
</ons-toolbar-button>
</div>
<div class="center toolbar__center toolbar__title ng-binding">My app</div>
<div class="right toolbar__right">
<ons-toolbar-button class="toolbar-button">
<ons-icon icon="ion-navicon, material:md-menu" class="ons-icon ion-navicon ons-icon--ion"></ons-icon>
</ons-toolbar-button>
</div>
</ons-toolbar>
<div class="page__background"></div><div class="page__content">
<p style="text-align: center">
<ons-button ng-click="page.showAlert('Hello world!')" class="button">Click me!</ons-button>
</p>
</div>
</ons-page>
Due to the asynchronous nature of JavaScript and animations, Onsen UI provides ons-page life cycle to perform actions at the right time. Loading data, updating the view, saving data before destroying… all of these and more actions are examples of what can be done thanks to page’s life cycle.
<ons-page> provides a set of DOM events that will be fired in unique and set times of its life cycle. Use these events to alter the behavior on each page.
init event is fired after <ons-page> is attached to DOM. Use this event to initialize the code or dynamic content of a page when it is created (before it is shown).
destroy event is fired before <ons-page> is destroyed and prior to DOM detachment. Use this event to clean up or save anything you need.
show event is fired every time <ons-page> comes into view, i.e. when a new page is created and shown immediately or when an existing page shows up. Use this event to run code every time a page appears.
hide event is fired every time <ons-page> disappears from view, i.e. when a visible page is destroyed or is hidden but still exists in the page stack. Use this event to run code every time a page disappears.
Monaca is a commercial service but can be started for free. For more details, visit Monaca Website.
Run npm install -g cordova
xcode-select --install
on Terminalbrew install ideviceinstaller ios-webkit-debug-proxy
npm install -g ios-deploy
on Terminal
npm install --save-dev @types/angular