mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
View tests turned green
This commit is contained in:
@@ -38,11 +38,7 @@ export class Progress extends ProgressBase {
|
||||
return this._ios.progressTintColor;
|
||||
}
|
||||
set [colorProperty.native](value: Color) {
|
||||
if (value instanceof Color) {
|
||||
this._ios.progressTintColor = value.ios;
|
||||
} else {
|
||||
this._ios.progressTintColor = value;
|
||||
}
|
||||
this._ios.progressTintColor = value instanceof Color ? value.ios : value;;
|
||||
}
|
||||
|
||||
get [backgroundColorProperty.native](): UIColor {
|
||||
|
||||
Reference in New Issue
Block a user