standardAppearance property
UITabBarAppearance?
get
standardAppearance
When set and this item is selected, overrides the hosting tab bar's standardAppearance.
Implementation
UITabBarAppearance? get standardAppearance {
objc.checkOsVersionInternal('UITabBarItem.standardAppearance', iOS: (false, (13, 0, 0)));
final $ret = _objc_msgSend_151sglz(object$.ref.pointer, _sel_standardAppearance);
return $ret.address == 0 ? null : UITabBarAppearance.fromPointer($ret, retain: true, release: true);
}
set
standardAppearance
(UITabBarAppearance? value)
When set and this item is selected, overrides the hosting tab bar's standardAppearance.
Implementation
set standardAppearance(UITabBarAppearance? value) {
objc.checkOsVersionInternal('UITabBarItem.setStandardAppearance:', iOS: (false, (13, 0, 0)));
_objc_msgSend_xtuoz7(object$.ref.pointer, _sel_setStandardAppearance_, value?.ref.pointer ?? ffi.nullptr);
}