Files
inKino/web/lib/app_component.html
Iiro Krankka 59fd61afbd Multiplatform stuff (#102)
* Multiplatform stuff.
* Update to make stuff work with the latest Flutter beta.
2018-11-07 15:34:34 +01:00

13 lines
444 B
HTML

<app-bar
[theaterDropdownActive]="theaterDropdownActive"
[theaterDropdownVisible]="theaterDropdownVisible"
(theaterButtonClicked)="toggleTheaterDropdown">
</app-bar>
<main class="content" [class.scrolling-blocked]="theaterDropdownVisible">
<router-outlet [routes]="Routes.all"></router-outlet>
<div class="theater-container" [class.visible]="theaterDropdownActive">
<template #theaterContainer></template>
</div>
</main>