You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 1, 2024. It is now read-only.
var cv = new CollectionView();
cv.RefreshIndicatorTemplate = new ContentView {
Content = new Label { Text = "Refreshing..." }
};
Properties
API
Description
RefreshIndicatorTemplate
ContentView that appears to indicate that the CollectionView is refreshing.
Considerations
The goal is, of course, for the behavior to best match the naming, which is why RefreshIndicatorTemplate is being used to start with. Setting it within the CollectionView (such as in the above sample XAML) is consistent with typical Xamarin.Forms concepts. Feedback is welcome as this is still a relatively open enhancement concept.
Difficulty: Medium
The text was updated successfully, but these errors were encountered:
I can be wrong, but RefreshIndicatorTemplate name hints me, that i should set DataTemplate there.
Perhaps, RefreshIndicator would be enough.
Because we have such names as: ActivityIndicator (class name), Header and Footer properties in ListView. (instead of ActivityIndicatorView, HeaderTemplate and FooterTemplate)
Summary
Provide the ability for users to define their own template/ContentView for a custom refresh indicator in the CollectionView.
API
Properties
Considerations
The goal is, of course, for the behavior to best match the naming, which is why
RefreshIndicatorTemplate
is being used to start with. Setting it within the CollectionView (such as in the above sample XAML) is consistent with typical Xamarin.Forms concepts. Feedback is welcome as this is still a relatively open enhancement concept.Difficulty: Medium
The text was updated successfully, but these errors were encountered: