https://github.com/binaryify/ionic2-app-webpack-boilerplate
this is a app demo ,build with ionic2 & angular2
https://github.com/binaryify/ionic2-app-webpack-boilerplate
Last synced: about 1 year ago
JSON representation
this is a app demo ,build with ionic2 & angular2
- Host: GitHub
- URL: https://github.com/binaryify/ionic2-app-webpack-boilerplate
- Owner: Binaryify
- License: apache-2.0
- Created: 2016-04-12T02:22:51.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-17T07:51:08.000Z (about 10 years ago)
- Last Synced: 2025-04-17T16:03:53.485Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.14 MB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ionic2-webpack-app-boilerplate
this is a app boilerplate,build with ionic2 & angular2 & webpack!
[demo](http://binaryify.github.io/demo/ionic2/)




# start
```
0 . npm install -g ionic@beta
1 . git clone git@github.com:Binaryify/ionic2-app-webpack-boilerplate.git
2 . npm install or cnpm install
3 . ionic serve
```
# hide tabs
[how to hide tabs](https://forum.ionicframework.com/t/ionic2-hide-tabs/37998/5)
```js
@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自带命令生成各种分辨率图标](http://ionichina.com/topic/54e455ab2be672f1111c01e2)
[ionic2 中文文档](https://github.com/Raineye/ionic2)
[angular2 资源](https://github.com/kittencup/angular2-learning-cn)
[HTTP](https://github.com/kittencup/angular2-ama-cn/issues/42)
[Browserify vs. webpack](https://forum.ionicframework.com/t/ionic-2-projects-updating-to-beta-4/49054)