I just added the following code in my RN app that runs on iOS and Android:
AndroidKeyboardAdjust.setAdjustPan();
But to make it work on iOS I have to check if AndroidKeyboardAdjust
if (AndroidKeyboardAdjust) {
AndroidKeyboardAdjust.setAdjustPan();
}
Would be nice to get this wrapped so that
AndroidKeyboardAdjust.setAdjustPan();
just does nothing (without crashing) on iOS.
I just added the following code in my RN app that runs on iOS and Android:
But to make it work on iOS I have to check if
AndroidKeyboardAdjustWould be nice to get this wrapped so that
just does nothing (without crashing) on iOS.