Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Nativescript how to change the size of the activity-indicator (iOS)

Tags:

nativescript

Can the size of the activity indicator be changed in Nativescript iOS?

Also the color.

like image 695
dashman Avatar asked Dec 29 '25 05:12

dashman


1 Answers

It sure can, I did something like this in my main view:

if (frameModule.topmost().ios) {
    var indicator = page.getViewById("indicator");
    indicator.ios.activityIndicatorViewStyle = UIActivityIndicatorViewStyle.UIActivityIndicatorViewStyleWhiteLarge;
    indicator.ios.color = new colorModule.Color("#FFFFFF").ios;
}
like image 68
Manijak Avatar answered Dec 30 '25 23:12

Manijak