How to create a blank app using IONIC framework
-
date_range 04/07/2015 00:00 infosort label
After installing and setup ionic use the following command to build your first project.
ionic start AppName blank
There are three ready-made app templates to start a fresh app.
- blank Creating a blank App.
- tabs creating a template having Tabs.
- sidemenu creating a template having sidemenu.
After creating the app run the app using following command
ionic serve --lab
This will start your application in browser. The browser window seperate in two parts.
- IOS view
- Android view
To create an build of your application first you need to add the platform for which you are going to create your build.
For this use the following command to add platform
ionic add platform android
After adding platform create the build using the following command
ionic build android