File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ export class Button extends ButtonBase {
187
187
}
188
188
[ colorProperty . setNative ] ( value ) {
189
189
const color = value instanceof Color ? value . android : value ;
190
- super [ colorProperty . setNative ] ( color ) ;
190
+ super [ colorProperty . setNative ] ( value ) ;
191
191
this . nativeViewProtected . setIconTint ( android . content . res . ColorStateList . valueOf ( color ) ) ;
192
192
}
193
193
}
Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ export class Button extends ButtonBase {
263
263
}
264
264
[ colorProperty . setNative ] ( value ) {
265
265
const color = value instanceof Color ? value . ios : value ;
266
- super [ colorProperty . setNative ] ( color ) ;
266
+ super [ colorProperty . setNative ] ( value ) ;
267
267
this . nativeViewProtected . setImageTintColorForState ( color , UIControlState . Normal ) ;
268
268
}
269
269
}
You can’t perform that action at this time.
0 commit comments