Merge branch 'master' of ssh.dev.azure.com:v3/HackKu/HackKu%202020/frontend
This commit is contained in:
commit
64ade5a5c4
@ -1,6 +1,6 @@
|
|||||||
<ion-app>
|
<ion-app>
|
||||||
<ion-split-pane when="sm">
|
<ion-split-pane when="sm">
|
||||||
<ion-menu>
|
<ion-menu class="sidebar">
|
||||||
<ion-header>
|
<ion-header>
|
||||||
<ion-toolbar color="primary">
|
<ion-toolbar color="primary">
|
||||||
<ion-title>Menu</ion-title>
|
<ion-title>Menu</ion-title>
|
||||||
@ -14,17 +14,17 @@
|
|||||||
</ion-list-header>
|
</ion-list-header>
|
||||||
|
|
||||||
<tree-root [nodes]="nodes" [options]="options"></tree-root>
|
<tree-root [nodes]="nodes" [options]="options"></tree-root>
|
||||||
|
|
||||||
<ion-item lines="full">
|
|
||||||
<ion-icon slot="start" name="moon"></ion-icon>
|
|
||||||
<ion-label>
|
|
||||||
Toggle Dark Theme
|
|
||||||
</ion-label>
|
|
||||||
<ion-toggle id="themeToggle" slot="end"></ion-toggle>
|
|
||||||
</ion-item>
|
|
||||||
|
|
||||||
</ion-list>
|
</ion-list>
|
||||||
</ion-content>
|
</ion-content>
|
||||||
|
<ion-footer>
|
||||||
|
<ion-item slot="end" lines="full">
|
||||||
|
<ion-icon slot="start" name="moon"></ion-icon>
|
||||||
|
<ion-label>
|
||||||
|
Dark mode
|
||||||
|
</ion-label>
|
||||||
|
<ion-toggle (ionChange)="toggleDark()" id="themeToggle" slot="end"></ion-toggle>
|
||||||
|
</ion-item>
|
||||||
|
</ion-footer>
|
||||||
</ion-menu>
|
</ion-menu>
|
||||||
|
|
||||||
<div class="ion-page" main>
|
<div class="ion-page" main>
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
.sidebar {
|
||||||
|
max-width: 20em !important;
|
||||||
|
}
|
@ -26,6 +26,7 @@ export class AppComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
public darkMode = false;
|
||||||
constructor(
|
constructor(
|
||||||
private platform: Platform,
|
private platform: Platform,
|
||||||
private splashScreen: SplashScreen,
|
private splashScreen: SplashScreen,
|
||||||
@ -48,4 +49,14 @@ export class AppComponent implements OnInit {
|
|||||||
this.splashScreen.hide();
|
this.splashScreen.hide();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
toggleDark() {
|
||||||
|
this.darkMode = !this.darkMode;
|
||||||
|
console.log("toggel Dark mode");
|
||||||
|
if (this.darkMode) {
|
||||||
|
console.log("Dark Mode On");
|
||||||
|
} else {
|
||||||
|
console.log("Dark Mode Off");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user