3 writes to _actionView
Microsoft.Maui.Controls.Compatibility (3)
iOS\Renderers\SwipeViewRenderer.cs (3)
263 _actionView = null; 460 _actionView = new UIStackView 1032 _actionView = null;
21 references to _actionView
Microsoft.Maui.Controls.Compatibility (21)
iOS\Renderers\SwipeViewRenderer.cs (21)
260 if (_actionView != null) 262 _actionView.Dispose(); 443 if (_contentView == null || _actionView != null) 474 _actionView.AddSubview(swipeItem); 482 _actionView.AddSubview(swipeItem); 487 AddSubview(_actionView); 495 if (_actionView == null || childs == null) 555 foreach (var view in _actionView.Subviews) 919 var actionBounds = _actionView.Bounds; 929 _actionView.Frame = new CGRect(actionSize + offset, actionBounds.Y, actionBounds.Width, actionBounds.Height); 934 _actionView.Frame = new CGRect(-actionSize + offset, actionBounds.Y, actionBounds.Width, actionBounds.Height); 939 _actionView.Frame = new CGRect(actionBounds.X, actionSize - Math.Abs(offset), actionBounds.Width, actionBounds.Height); 944 _actionView.Frame = new CGRect(actionBounds.X, -actionSize + Math.Abs(offset), actionBounds.Width, actionBounds.Height); 1028 if (_actionView != null) 1030 _actionView.RemoveFromSuperview(); 1031 _actionView.Dispose(); 1159 var actionBounds = _actionView.Bounds; 1167 _actionView.Frame = new CGRect(actionSize - swipeThreshold, actionBounds.Y, actionBounds.Width, actionBounds.Height); 1172 _actionView.Frame = new CGRect(-actionSize + swipeThreshold, actionBounds.Y, actionBounds.Width, actionBounds.Height); 1177 _actionView.Frame = new CGRect(actionBounds.X, actionSize - Math.Abs(swipeThreshold), actionBounds.Width, actionBounds.Height); 1182 _actionView.Frame = new CGRect(actionBounds.X, -actionSize + Math.Abs(swipeThreshold), actionBounds.Width, actionBounds.Height);