react-native-modalfy icon indicating copy to clipboard operation
react-native-modalfy copied to clipboard

backdropOpacity invalid

Open MuNitCat opened this issue 5 months ago • 1 comments

When I open a ConfirmModal once and then close it, the backdropOpacity of ModelSetting appears to be 0 when I subsequently open ModelSetting.

const modalConfig = {
  ConfirmModal: {
    modal: ConfirmModal,
    backdropOpacity: 0,
  },
  ModelSetting: {
     backdropOpacity: 0.4, 
    modal: ModelSet,
  },
}

const modalStack = createModalStack(modalConfig);

export default modalStack;

MuNitCat avatar Nov 11 '25 03:11 MuNitCat