backgroundColor property
UIColor?
get
backgroundColor
A color to use for the bar background. This color is composited over backgroundEffects.
Implementation
UIColor? get backgroundColor {
objc.checkOsVersionInternal('UIBarAppearance.backgroundColor', iOS: (false, (13, 0, 0)));
final $ret = _objc_msgSend_151sglz(object$.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) {
objc.checkOsVersionInternal('UIBarAppearance.setBackgroundColor:', iOS: (false, (13, 0, 0)));
_objc_msgSend_xtuoz7(object$.ref.pointer, _sel_setBackgroundColor_, value?.ref.pointer ?? ffi.nullptr);
}