2 writes to _footerUIView
Microsoft.Maui.Controls (2)
Handlers\Items\iOS\StructuredItemsViewController.cs (2)
46 _footerUIView = null; 115 ref _footerUIView, ref _footerViewFormsElement);
15 references to _footerUIView
Microsoft.Maui.Controls (15)
Handlers\Items\iOS\StructuredItemsViewController.cs (15)
93 if (_footerUIView != null) 99 if (_footerUIView.Frame.X != ItemsViewLayout.CollectionViewContentSize.Width || 100 _footerUIView.Frame.X < emptyView?.Frame.X) 105 if (_footerUIView.Frame.Y != ItemsViewLayout.CollectionViewContentSize.Height || 106 _footerUIView.Frame.Y < (emptyView?.Frame.Y + emptyView?.Frame.Height)) 170 nfloat footerWidth = ((ItemsView?.Footer is View) ? _footerViewFormsElement?.ToPlatform() : _footerUIView)?.Frame.Width ?? 0f; 178 if (_footerUIView != null && (_footerUIView.Frame.X != ItemsViewLayout.CollectionViewContentSize.Width || emptyWidth > 0)) 179 _footerUIView.Frame = new CoreGraphics.CGRect(ItemsViewLayout.CollectionViewContentSize.Width + emptyWidth, 0, footerWidth, CollectionView.Frame.Height); 200 nfloat footerHeight = ((ItemsView?.Footer is View) ? _footerViewFormsElement?.ToPlatform() : _footerUIView)?.Frame.Height ?? 0f; 234 if (_footerUIView != null && (_footerUIView.Frame.Y != height || emptyHeight > 0 || _footerUIView.Frame.Height != footerHeight)) 236 _footerUIView.Frame = new CoreGraphics.CGRect(0, height + emptyHeight, CollectionView.Frame.Width, footerHeight); 250 return new Size(size.Value.Width, size.Value.Height + (_headerUIView?.Frame.Height ?? 0) + (_footerUIView?.Frame.Height ?? 0));