scrollEdgeAppearance property

UITabBarAppearance? get scrollEdgeAppearance

Describes the appearance attributes for the tabBar to use when an observable scroll view is scrolled to the bottom. If not set, standardAppearance will be used instead.

Implementation

UITabBarAppearance? get scrollEdgeAppearance {
  objc.checkOsVersionInternal('UITabBar.scrollEdgeAppearance', iOS: (false, (15, 0, 0)));
  final $ret = _objc_msgSend_151sglz(object$.ref.pointer, _sel_scrollEdgeAppearance);
  return $ret.address == 0 ? null : UITabBarAppearance.fromPointer($ret, retain: true, release: true);
}
set scrollEdgeAppearance (UITabBarAppearance? value)

Describes the appearance attributes for the tabBar to use when an observable scroll view is scrolled to the bottom. If not set, standardAppearance will be used instead.

Implementation

set scrollEdgeAppearance(UITabBarAppearance? value) {
  objc.checkOsVersionInternal('UITabBar.setScrollEdgeAppearance:', iOS: (false, (15, 0, 0)));
  _objc_msgSend_xtuoz7(object$.ref.pointer, _sel_setScrollEdgeAppearance_, value?.ref.pointer ?? ffi.nullptr);
}