material-components-ios icon indicating copy to clipboard operation
material-components-ios copied to clipboard

Change the Circular MDCActivityIndicator size

Open appsdev85 opened this issue 4 years ago • 1 comments

Hi, Please would you add the ability to resize the Circular MDCActivityIndicator, as we add it to our IOS project and found that its has a fixed size and cant be changed !

appsdev85 avatar Jul 22 '21 13:07 appsdev85

Hello, a bit late, it seems we can change the size with the radius property:

let activityIndicator = MDCActivityIndicator()
activityIndicator.radius 
activityIndicator.sizeToFit()
view.addSubview(activityIndicator)

cyril-lepottier avatar Dec 15 '21 12:12 cyril-lepottier