像以前在Ionic 3中一样,如何在Ionic 4中的“加载”中使用FontAwsome图标?

时间:2019-03-21 12:58:22

标签: angular ionic4

我有一项服务只是在屏幕上显示/隐藏负载。

我需要使用Fontawsome图标代替离子图标。

我尝试过:

show(message ? : string) : void {
  this.isLoading = true;
  this.loader = this.loadingController.create({
    spinner: null,
    message: "<fa-icon icon='spinner' pulse='true' ></fa-icon>",
    translucent: true,
    showBackdrop: true,
    animated: true,
    keyboardClose: true
  });

  this.loader.then((a: any) => {
    a.present().then(() => {
      if (!this.isLoading) {
        a.dismiss().then(() => console.log('aborting...'));
      }
    });
  });
}

结果:
enter image description here

我该怎么办?

0 个答案:

没有答案