1 write to IsRefreshing
Microsoft.Maui.Controls (1)
RefreshView\RefreshView.cs (1)
137
IsRefreshing
= false;
7 references to IsRefreshing
Microsoft.Maui.Controls (5)
RefreshView\RefreshView.cs (5)
28
/// <summary>Bindable property for <see cref="
IsRefreshing
"/>.</summary>
30
BindableProperty.Create(nameof(
IsRefreshing
), typeof(bool), typeof(RefreshView), false, BindingMode.TwoWay, coerceValue: OnIsRefreshingPropertyCoerced, propertyChanged: OnIsRefreshingPropertyChanged);
123
if (
IsRefreshing
)
135
IsRefreshing
)
147
get =>
IsRefreshing
;
Microsoft.Maui.Controls.Compatibility (2)
iOS\Renderers\RefreshViewRenderer.cs (2)
29
if (Element != null && Element.
IsRefreshing
!= _isRefreshing)
240
IsRefreshing = Element.
IsRefreshing
;