mukaschultze / nativescript-windowed-modal

Consistent modals for Android and iOS
https://www.npmjs.com/package/nativescript-windowed-modal
Apache License 2.0
47 stars 18 forks source link

Feature request for setting windowSoftInputMode of android #58

Open coolboy0961 opened 3 years ago

coolboy0961 commented 3 years ago

I want show a modal which is displayed with a focus textfield and a soft keyboard.
So I programed following code.

    this.$showModal(sampleModal, {
      animated: true,
      cancelable: false,
      android: global.isAndroid
        ? {
            windowSoftInputMode:
              android.view.WindowManager.LayoutParams
                .SOFT_INPUT_STATE_ALWAYS_VISIBLE,
          }
        : undefined,
    })

It work fine by original showModal method. image

When I use this plugin, soft keyboard will not appear automatically.
I think this plugin didn't implement function about windowSoftInputMode.

Appendix:
image