Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tmyt/amazingpulltorefresh

Enables PullToRefresh to ListView, GridView, and more.
https://github.com/tmyt/amazingpulltorefresh

Last synced: 2 months ago
JSON representation

Enables PullToRefresh to ListView, GridView, and more.

Awesome Lists containing this project

README

        

AmazingPullToRefresh
====

Features
----

- Enables PullToRefresh to ListView, GridView, and more.
- Good pull feeling.

Usage
----

1. Add package from NuGet.
2. Write XAML & CS
3. Done!

Example
----

- MainPage.xaml
```xml



```

- MainPage.xaml.cs
```cs
private async void PullToRefreshExtender_RefreshRequested(object sender, RefreshRequestedEventArgs e)
{
var deferral = e.GetDeferral();
await Task.Delay(2500); // something
deferral.Complete();
}
```

ToDo
----

- Stylize pull to refresh indicator

License
----

This library released under the MIT License.