Close Modal in Ionic 4 by Back Button

后端 未结 6 1998
名媛妹妹
名媛妹妹 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:05

    Update, for Ionic 5 (Angular)

    in your-modal.page.ts

    import { ModalController } from '@ionic/angular';
    

    at the top of your modal's .ts file. Then in your constructor you can just denote a -public- relationship to the controller, that way it's accessible by your view.

    also in your-modal.page.ts

    constructor(
        public modalCtrl: ModalController
    ) {}
    

    Now you can inline the close command:

    in your-modal.page.html

    
      
        Modal Title
        
          
            
          
        
      
    
    

    Slot "primary" makes the buttons move to the right in iOS.

提交回复
热议问题