summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IListViewController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/IListViewController.cs')
-rw-r--r--Xamarin.Forms.Core/IListViewController.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/IListViewController.cs b/Xamarin.Forms.Core/IListViewController.cs
new file mode 100644
index 00000000..078f13b7
--- /dev/null
+++ b/Xamarin.Forms.Core/IListViewController.cs
@@ -0,0 +1,15 @@
+namespace Xamarin.Forms
+{
+ internal interface IListViewController : IViewController
+ {
+ Element FooterElement { get; }
+
+ Element HeaderElement { get; }
+
+ bool RefreshAllowed { get; }
+
+ void SendCellAppearing(Cell cell);
+ void SendCellDisappearing(Cell cell);
+ void SendRefreshing();
+ }
+} \ No newline at end of file