Close Modal in Ionic 4 by Back Button

后端 未结 6 2065
名媛妹妹
名媛妹妹 2021-02-03 12:38

I have a Modal in Ionic 4. I\'d like to close it, when a user press the back button on her mobile (or the bac

6条回答
  •  甜味超标
    2021-02-03 13:23

    Yes, are almost on the way.... you just need to change in HTML part. I did in this way.

    
        
            
                
                    
                
            
            Create Pin 
        
    
    

    after this, you just need to create a function that will close your modal popup. in your ts file

    closeModal() {
        this.modalCtrl.dismiss();
    }
    

    I hope that will help you.

提交回复
热议问题