Styling ionic 2 toast

前端 未结 9 2013
深忆病人
深忆病人 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:53

    Change toast background color and opacity:

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

    and add app.scss:

    .changeToast{.toast-wrapper {opacity: 0.6; border-radius: 5px !important; text-align: center; background: color($colors, primary);}};
    

    It's used with .toast-message

提交回复
热议问题