mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 13:01:01 +08:00

if it is with a floating label, the label will stay stacked instead of floating closes #5715
15 lines
200 B
TypeScript
15 lines
200 B
TypeScript
import {App, Page} from 'ionic-angular';
|
|
|
|
|
|
@App({
|
|
template: '<ion-nav [root]="rootPage"></ion-nav>'
|
|
})
|
|
class E2EApp {
|
|
rootPage = PageOne;
|
|
}
|
|
|
|
@Page({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class PageOne {}
|