Make bottom sheet fragment not dismiss when user touches outside the dialog
Please enable making bottomsheet full screen or not dismiss when user touches outside the dialog. Because if user accidentally touch outside the dialog bottomsheet dismisses and data lost.
ClickMerchant.init(supportFragmentManager, config, new ClickMerchantListener { @Override void onRequestIdGet(String requestId) {
}
@Override
void onFailure() {
}
@Override
void onSuccess(Long paymentId) {
}
@Override
void onInvoiceCancelled() {
}
}
)
you must temporarily save the requestId, if you give the same requestId before reopening, then it will continue where it left off. An example Project you can see how to do it
Ok, let's add that soon. It will be possible to customize
you must temporarily save the requestId, if you give the same requestId before reopening, then it will continue where it left off. An example Project you can see how to do it
Thanks now I understand and I did it too