mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Animated nav-bar
This commit is contained in:
@@ -44,12 +44,9 @@ export class Progress extends ProgressBase {
|
||||
get [backgroundColorProperty.native](): UIColor {
|
||||
return this._ios.trackTintColor;
|
||||
}
|
||||
set [backgroundColorProperty.native](value: Color) {
|
||||
if (value instanceof Color) {
|
||||
this._ios.trackTintColor = value.ios;
|
||||
} else {
|
||||
this._ios.trackTintColor = value;
|
||||
}
|
||||
set [backgroundColorProperty.native](value: UIColor | Color) {
|
||||
let color = value instanceof Color ? value.ios : value;
|
||||
this._ios.trackTintColor = color;
|
||||
}
|
||||
|
||||
get [backgroundInternalProperty.native](): UIColor {
|
||||
|
||||
Reference in New Issue
Block a user