Answers for "back button not working when modal open in react native"

0

back button not working when modal open in react native

//#react native elements bottom sheet close on back button press
<BottomSheet
isVisible={isModelVisible}
modalProps={{
            animationType: 'fade',
            hardwareAccelerated: true,
            onRequestClose: () => {
              setModelVisible(false);
            },
}}>
  ....
  <BottomSheet/>
Posted by: Guest on August-13-2021

Code answers related to "back button not working when modal open in react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language