Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/tmyt/amazingpulltorefresh
- Owner: tmyt
- Created: 2015-11-02T20:30:24.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-02T23:29:46.000Z (about 9 years ago)
- Last Synced: 2024-10-12T14:12:05.719Z (3 months ago)
- Language: C#
- Size: 598 KB
- Stars: 15
- Watchers: 5
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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.