离子 – 骨架 – 径向进展条到离子v.2?

我需要一个径向进度条Ionic. V.2,但仅适用于Ionic v.1(
https://github.com/tgarlanger/ion-radial-progress).

有没有人做过或想出怎么做?

最佳答案 我知道为时已晚.但是,它可能会帮助别人.我一直在找同样的东西,发现了这一点.像魅力一样工作!按照此链接上的说明操作:
https://github.com/crisbeto/angular-svg-round-progressbar并导入模块,如此=>

import { RoundProgressModule } from "angular-svg-round-progressbar/dist";

@NgModule({
  imports: [
    RoundProgressModule
  ]
})

Notice: import statement is the important part which I have demonstrated above. Copy the import statement from above, not from the link. Other instructions are very clear on that github page.

点赞