selectionIndicatorImage property
UIImage?
get
selectionIndicatorImage
An image that is rendered behind the selected UITabBarItem and above the tab bar's background. Modified by selectionIndicatorTintColor when appropriate.
Implementation
UIImage? get selectionIndicatorImage {
objc.checkOsVersionInternal('UITabBarAppearance.selectionIndicatorImage', iOS: (false, (13, 0, 0)));
final $ret = _objc_msgSend_151sglz(object$.ref.pointer, _sel_selectionIndicatorImage);
return $ret.address == 0 ? null : UIImage.fromPointer($ret, retain: true, release: true);
}
set
selectionIndicatorImage
(UIImage? value)
An image that is rendered behind the selected UITabBarItem and above the tab bar's background. Modified by selectionIndicatorTintColor when appropriate.
Implementation
set selectionIndicatorImage(UIImage? value) {
objc.checkOsVersionInternal('UITabBarAppearance.setSelectionIndicatorImage:', iOS: (false, (13, 0, 0)));
_objc_msgSend_xtuoz7(object$.ref.pointer, _sel_setSelectionIndicatorImage_, value?.ref.pointer ?? ffi.nullptr);
}