File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Original file line number Diff line number Diff line change @@ -69,16 +69,20 @@ If you prefer not to use a dependency manager, you can integrate **RProgressView
69
69
> And for Manuall install you dont need to import anything
70
70
71
71
72
- You need to simply initiate progressView with four colours if you want to customise colors initiate like this
72
+ You need to simply initiate progressView
73
73
74
74
> ```swift
75
75
> var progessView = RProgressView ()
76
76
> ```
77
77
78
+ You cann set number of circles you want in your progress view set `numberOfCircles` property
79
+ > ```swift
80
+ > progress.numberOfCircles = 4
81
+ > ```
78
82
You can show multi color Circles for that turn on `isMultiColour` to true and add colours `dotColors` according to number of circles like this
79
83
80
84
> ```swift
81
- > private lazy var progessViewMultiColour: RProgressView = {
85
+ > private lazy var progessViewMultiColour: RProgressView = {
82
86
> let progress = RProgressView ()
83
87
> progress.isMultiColour = true
84
88
> progress.mainDotColor = .black
You can’t perform that action at this time.
0 commit comments