2 writes to _bar
Microsoft.Maui.Controls (2)
Compatibility\Handlers\Shell\iOS\ShellSectionRootHeader.cs (2)
180 _bar = new UIView(new CGRect(0, 0, 20, 20)); 225 _bar = null;
8 references to _bar
Microsoft.Maui.Controls (8)
Compatibility\Handlers\Shell\iOS\ShellSectionRootHeader.cs (8)
181 _bar.BackgroundColor = UIColor.White; 182 _bar.Layer.ZPosition = 9001; //its over 9000! 183 CollectionView.AddSubview(_bar); 222 _bar.RemoveFromSuperview(); 224 _bar.Dispose(); 247 if (_bar.Frame.Height != 2) 249 _bar.Frame = new CGRect(frame.X, frame.Bottom - 2, frame.Width, 2); 253 UIView.Animate(.25, () => _bar.Frame = new CGRect(frame.X, frame.Bottom - 2, frame.Width, 2));