最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

ionic 8 angular mode ios not getting applied on android - Stack Overflow

programmeradmin0浏览0评论

i applied mode=ios in my ionic app like below in app.module.ts

@NgModule({
  declarations: [AppComponent],
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
  imports: [
    BrowserModule, 
    IonicModule.forRoot(
      {
        mode: 'ios'
      }
    ), 
    IonicModule.forRoot(), 
    AppRoutingModule,
    FormsModule,
    ReactiveFormsModule,
    CurrencyPipe
  ],

however, on android I still see things like button label in all caps which is the default behavior on android. am I missing something else?

发布评论

评论列表(0)

  1. 暂无评论