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