nativescript-material-loading-indicator
v1.0.0
Published
This package installs an activity indicator for iOS inspired by the material design indicator of Android
Readme
NativeScript Material design activity indicator for iOS
Following the material design loading indicator for Android, this plugin provides the same look and feel for iOS.
Prerequisites
NativeScript 1.3.0 (tns --version) has solved many build issues, so please upgrade if you need to.
Installation
From the command prompt go to your app's root folder and execute:
tns plugin add nativescript-material-loading-indicatorUsage
function creatingView(args) {
var spinnerView = MMMaterialDesignSpinner.alloc().initWithFrame(CGRectMake(0,0,40,40));
spinnerView.lineWidth = 1.5;
spinnerView.tintColor = UIColor.redColor();
spinnerView.startAnimating();
args.view = spinnerView;
}
exports.creatingView = creatingView;<Page xmlns="http://www.nativescript.org/tns.xsd">
<Placeholder creatingView="creatingView"/>
</Page>