Can anyone help me create a circular progress bar in Ionic 3? I'm new to Ionic and have already attempted to install the jQuery circle progress package by running
npm install jquery-circle-progress
. The installation was successful, but now I'm uncertain about how to actually use it within my Ionic project. Any guidance would be greatly appreciated. Thank you!
Here is the link to the package
Update:
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { ProfilePage } from './profile';
import { RoundProgressComponent } from 'angular-svg-round-progressbar';
@NgModule({
declarations: [ ProfilePage, ],
imports: [IonicPageModule.forChild(ProfilePage), ], })
export class ProfilePageModule {}