【发布时间】:2021-01-22 19:27:17
【问题描述】:
在我的 Ionic 5 应用程序的标题中有一个离子搜索栏。它与ios中的状态栏重叠。
page.html
<ion-header>
<ion-searchbar clearIcon="close-sharp" [(ngModel)]="searchTerm"
debounce="1500" showCancelButton="true" (ionChange)="onSearch()" (ionCancel)="toggleSearch()">
</ion-searchbar>
</ion-header>
我已尝试将其放入ion-toolbar。结果是一样的。
app.component.ts
this.statusBar.styleDefault();
我尝试了statusBar.overlaysWebView(false),但没有成功。
index.html
<meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
【问题讨论】:
标签: ios ionic-framework statusbar searchbar ionic5