1 implementation of EffectiveFlowDirection
Microsoft.Maui.Controls (1)
VisualElement\VisualElement.cs (1)
475
EffectiveFlowDirection IVisualElementController.
EffectiveFlowDirection
=> FlowController.EffectiveFlowDirection;
11 references to EffectiveFlowDirection
Microsoft.Maui.Controls.Compatibility (11)
Android\Extensions\FlowDirectionExtensions.cs (2)
21
if (controller.
EffectiveFlowDirection
.IsRightToLeft())
28
else if (controller.
EffectiveFlowDirection
.IsLeftToRight())
Android\PopupManager.cs (4)
169
if ((sender as IVisualElementController).
EffectiveFlowDirection
.IsRightToLeft())
171
else if ((sender as IVisualElementController).
EffectiveFlowDirection
.IsLeftToRight())
185
if ((sender as IVisualElementController).
EffectiveFlowDirection
.IsRightToLeft())
187
else if ((sender as IVisualElementController).
EffectiveFlowDirection
.IsLeftToRight())
Android\Renderers\EntryRenderer.cs (3)
591
&& (Element as IVisualElementController).
EffectiveFlowDirection
.IsLeftToRight())
596
&& (Element as IVisualElementController).
EffectiveFlowDirection
.IsRightToLeft())))
645
if ((Element as IVisualElementController).
EffectiveFlowDirection
.IsRightToLeft())
Android\Renderers\ScrollViewRenderer.cs (2)
124
var flowDirection = controller.
EffectiveFlowDirection
.IsLeftToRight()
276
if (!_checkedForRtlScroll && _hScrollView != null && Element is IVisualElementController controller && controller.
EffectiveFlowDirection
.IsRightToLeft())