Ionic 5 - 去除ios全局上的离子后键文字。

问题描述 投票:0回答:1

如何通过css或其他方法删除?影子CSS不能让我用简单的方法来做这个事情,我想为每个页面(全局)删除它。

我想为每个页面(全局)删除它。

enter image description here

css ios ionic-framework ionic4 ionic5
1个回答
0
投票

你可以在你的应用程序的主模块中给Ionic一个配置对象(假设是Angular)。

import { IonicModule } from '@ionic/angular';

@NgModule({
  ...
  imports: [
    BrowserModule,
    IonicModule.forRoot({
      backButtonText: '' // Set an empty string to have no text next to the back icon
    }),
    AppRoutingModule
  ],
  ...
})

完整的文档。https:/ionicframework.comdocsangularconfig#global-config。

© www.soinside.com 2019 - 2024. All rights reserved.