set up blockly page
parent
81df276d99
commit
24eb305e5a
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,25 @@
|
||||
<!--
|
||||
Generated template for the SenseBoxPage page.
|
||||
|
||||
See http://ionicframework.com/docs/components/#navigation for more info on
|
||||
Ionic pages and navigation.
|
||||
-->
|
||||
<ion-header>
|
||||
<ion-navbar>
|
||||
<button ion-button menuToggle>
|
||||
<ion-icon name="menu"></ion-icon>
|
||||
</button>
|
||||
<ion-title>Blockly</ion-title>
|
||||
</ion-navbar>
|
||||
</ion-header>
|
||||
|
||||
|
||||
|
||||
|
||||
<ion-content padding>
|
||||
|
||||
<div>
|
||||
Blockly should be displayed here !
|
||||
</div>
|
||||
|
||||
</ion-content>
|
@ -0,0 +1,13 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { IonicPageModule } from 'ionic-angular';
|
||||
import { BlocklyPage } from './blockly';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
BlocklyPage,
|
||||
],
|
||||
imports: [
|
||||
IonicPageModule.forChild(BlocklyPage),
|
||||
],
|
||||
})
|
||||
export class BlocklyPageModule {}
|
@ -0,0 +1,3 @@
|
||||
page-blockly {
|
||||
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
import { ApiProvider } from '../../providers/api/api';
|
||||
import { Component } from '@angular/core';
|
||||
import { IonicPage, NavController, NavParams } from 'ionic-angular';
|
||||
|
||||
/**
|
||||
* Generated class for the SenseBoxPage page.
|
||||
*
|
||||
* See https://ionicframework.com/docs/components/#navigation for more info on
|
||||
* Ionic pages and navigation.
|
||||
*/
|
||||
|
||||
@IonicPage()
|
||||
@Component({
|
||||
selector: 'page-blockly',
|
||||
templateUrl: 'blockly.html',
|
||||
})
|
||||
export class BlocklyPage {
|
||||
|
||||
|
||||
constructor(public navCtrl: NavController, public navParams: NavParams, private api: ApiProvider) {
|
||||
}
|
||||
|
||||
ionViewDidLoad() {
|
||||
console.log('ionViewDidLoad SenseBoxPage');
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue