All Projects → Binaryify → Ionic2 App Webpack Boilerplate

Binaryify / Ionic2 App Webpack Boilerplate

Licence: apache-2.0
this is a app demo ,build with ionic2 & angular2

Programming Languages

javascript
184084 projects - #8 most used programming language

ionic2-webpack-app-boilerplate

this is a app boilerplate,build with ionic2 & angular2 & webpack!

demo

image1 (demo) image2 (actionSheet) image3 (alert) image4 (params)

start

0 . npm install -g [email protected]
1 . git clone [email protected]:Binaryify/ionic2-app-webpack-boilerplate.git
2 . npm install or cnpm install
3 . ionic serve

hide tabs

how to hide tabs

@Page(
{
    templateUrl: '...',
})
export class PageWithoutTabBar
{

    constructor()
    {

        this.tabBarElement = document.querySelector('#tabs ion-tabbar-section');

    }

    onPageWillEnter()
    {

        this.tabBarElement.style.display = 'none';

    }

    onPageWillLeave()
    {

        this.tabBarElement.style.display = 'block';

    }

}

enjoy it !

附:

ionic自带命令生成各种分辨率图标

ionic2 中文文档

angular2 资源

HTTP

Browserify vs. webpack

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].