加载控制器CSS无法在Ionic 4中工作?

时间:2019-05-07 09:15:21

标签: ionic-framework ionic4

有人知道如何在ionic 4中提供加载控制器的CSS吗?我已经尝试了所有在线可用的解决方案,但没有用,所以请帮助我。

我已经做了一项名为loadingService的服务,用于加载控制器,然后在gloabal.scss或variable中给css提供了支持。这是我的代码。

loadingService.ts

     async present() {
        this.isLoading = true;
        return await this.loadingController.create({
          spinner: "lines-small",
          duration: 10000,
          cssClass:'loader',

        }).then(a => {
          a.present().then(() => {
            console.log('presented');
            if (!this.isLoading) {
              a.dismiss().then(() => console.log('abort presenting'));
            }
          });
        });
      }

    async dismiss() {
        this.isLoading = false;
        return await this.loadingController.dismiss().then(() => console.log('dismissed'));
      }

gloabal.scss

    .loader {
        --background: #600001;
        --spinner-color: yellow;
      }

请帮助我,是的,我正在使用离子4,所以请给我离子4解决方案,而不是离子3。

0 个答案:

没有答案