在 ionic 4 的吐司控制器中放置字体真棒图标
Putting font awesome icons in toast controller in ionic 4
有没有办法在 ionic 4 的 Toast Controller 中的 toast 消息旁边放置一个图标?
我用 toastController.create()
方法创建了 toast 控制器并传递了 cssClass
属性,有什么方法可以通过这个 class 来放置一个很棒的字体图标在 cssClass
属性?就像在 css?
中导出 fal-fa-icon
class
我想做这样的事情:
我遇到了同样的问题。我尝试在 css 中使用 ion icon cheet,但 toast-message
或 toast-container
class 不会随任何样式改变。
我不知道如何添加字体超棒的图标,但如果您对图像感到满意,可以将其直接添加到吐司消息中:
https://forum.ionicframework.com/t/icon-in-toast/113750/4
或者您可以使用离子图标,示例:
this.toastController.create({
message: '<ion-icon name="bicycle"></ion-icon> Cycling saves the world!',
duration: 2000,
color: 'success'
});
有没有办法在 ionic 4 的 Toast Controller 中的 toast 消息旁边放置一个图标?
我用 toastController.create()
方法创建了 toast 控制器并传递了 cssClass
属性,有什么方法可以通过这个 class 来放置一个很棒的字体图标在 cssClass
属性?就像在 css?
fal-fa-icon
class
我想做这样的事情:
我遇到了同样的问题。我尝试在 css 中使用 ion icon cheet,但 toast-message
或 toast-container
class 不会随任何样式改变。
我不知道如何添加字体超棒的图标,但如果您对图像感到满意,可以将其直接添加到吐司消息中:
https://forum.ionicframework.com/t/icon-in-toast/113750/4
或者您可以使用离子图标,示例:
this.toastController.create({
message: '<ion-icon name="bicycle"></ion-icon> Cycling saves the world!',
duration: 2000,
color: 'success'
});