Styling ionic 2 toast

前端 未结 9 2031
深忆病人
深忆病人 2021-02-05 07:32

Is there any way to style the text message within an ionic 2 toast?

I have tried this:

9条回答
  •  南笙
    南笙 (楼主)
    2021-02-05 07:46

    I tried all above, still didn't work, therefore I come across a new solution, you need cssClass outside of page css declaration:

    let toast = this.toastCtrl.create({
              message: msg,
              duration: 3000,
              position: 'bottom',
              cssClass: 'toastcolor'
            });
    

    post-list.scss like this

    page-post-list {
    
    }
    .toastcolor .toast-message {
        background-color:skyblue;
    }      
    

提交回复
热议问题