tjvantoll / nativescript-IQKeyboardManager

NativeScript wrapper for the popular IQKeyboardManager iOS framework
MIT License
100 stars 20 forks source link

Incompatibility with tns-ios 4.0.1 #33

Closed arcovoltaico closed 5 years ago

arcovoltaico commented 6 years ago

Hi, I have been happily using your nice dependency, but after upgrading from tns-ios 3.4.1 to 4.0.1 when I tap a textfield the screen go up ok, but when I press a key then, after the update, the screen go up about 20px more ... so on an iPhone SE when the keyboard disappears then the screen goes down keeping 20px hidden by my action bar. If it matters, I'm using Angular TypeScript {N}. Thx !!

armackey commented 6 years ago

Same here.

darxmac commented 6 years ago

same

gsmedley commented 6 years ago

Are you using a ScrollView? I found I had to wrap all my ScrollViews in StackLayouts after the 4.0.1 upgrade.

arcovoltaico commented 6 years ago

@gsmedley Thanks, but unfortunately all of them were already wrapped with StackLayouts .... so still experiencing the problem :-(

hosikiti commented 6 years ago

Same. Seems scrollview at top level of component should be wrapped by stacklayout (or other container, not sure)

Not worked:

<ScrollView>
</ScrollView>

Worked:

<StackLayout>
  <ScrollView>
  </ScrollView>
</StackLayout>