backgroundColor property
UIColor?
get
backgroundColor
A color to use for the bar background. This color is composited over backgroundEffects.
Implementation
UIColor? get backgroundColor {
final _$$ref = object$.ref;
objc.checkOsVersionInternal('UIBarAppearance.backgroundColor', iOS: (false, (13, 0, 0)));
final $ret = _objc_msgSend_151sglz(_$$ref.pointer, _sel_backgroundColor);
return $ret.address == 0 ? null : UIColor.fromPointer($ret, retain: true, release: true);
}
set
backgroundColor
(UIColor? value)
A color to use for the bar background. This color is composited over backgroundEffects.
Implementation
set backgroundColor(UIColor? value) {
final _$$ref = object$.ref;
final _$$ref$1 = value?.ref;
objc.checkOsVersionInternal('UIBarAppearance.setBackgroundColor:', iOS: (false, (13, 0, 0)));
_objc_msgSend_xtuoz7(_$$ref.pointer, _sel_setBackgroundColor_, _$$ref$1?.pointer ?? ffi.nullptr);
}