material-components-ios
material-components-ios copied to clipboard
Change the Circular MDCActivityIndicator size
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 !
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)