mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-21 00:23:00 +08:00
Merge pull request #2027 from qligier/master
docs(spinner-dialog): improve options documentation
This commit is contained in:
commit
9cc3d8fd74
@ -2,9 +2,24 @@ import { Injectable } from '@angular/core';
|
||||
import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core';
|
||||
|
||||
export interface SpinnerDialogIOSOptions {
|
||||
/**
|
||||
* Opacity of the overlay, between 0 (transparent) and 1 (opaque). Default: 0.35
|
||||
*/
|
||||
overlayOpacity?: number;
|
||||
|
||||
/**
|
||||
* Red component of the text color, between 0 and 1. Default: 1
|
||||
*/
|
||||
textColorRed?: number;
|
||||
|
||||
/**
|
||||
* Green component of the text color, between 0 and 1. Default: 1
|
||||
*/
|
||||
textColorGreen?: number;
|
||||
|
||||
/**
|
||||
* Blue component of the text color, between 0 and 1. Default: 1
|
||||
*/
|
||||
textColorBlue?: number;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user