import {IonicApp, IonicView} from 'ionic/ionic'; import {SinkPage} from '../sink-page'; @IonicView({ template: ` Aside

Aside

Asides, also known as side menus or "hamburger" menus (mmmmm), are menus that slide or swipe in to show menus or information.

Try it! Just swipe from the left edge of the screen to the right to expose the app menu, or tap the button to toggle the menu:

` }) export class AsidePage extends SinkPage { constructor(app: IonicApp) { super(app); } openMenu() { } }