25

I'm using Ionic 3 on iPhone 7 plus with iOS 11. When I run my App, and fill in some text/input fields (basic forms) the app freezes for a few seconds and becomes completely unresponsive (which isn't good, not to say the least). I noticed this error coming up in Xcode, maybe that's the problem. Has anyone else encountered similar errors?

API error: <_UIKBCompatInputView: 0x13fd1d7c0; frame = (0 0; 0 0); layer = > returned 0 width, assuming UIViewNoIntrinsicMetric

Dimitri
  • 2,240
  • 3
  • 21
  • 39

1 Answers1

0

Remove deprecated items from the forRoot config in app.module.ts

IonicModule.forRoot(),

Eg. remove these:

{
  scrollPadding: true,
  scrollAssist: false
}

See https://ionicframework.com/docs/utilities/config for more info.

Grant
  • 5,709
  • 2
  • 38
  • 50