View tests turned green

This commit is contained in:
vakrilov
2017-01-10 15:01:09 +02:00
parent 969f09bc15
commit cd3cd13075
14 changed files with 578 additions and 605 deletions

View File

@@ -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 {