diff options
author | E.Z. Hart <hartez@gmail.com> | 2016-12-12 16:41:44 -0700 |
---|---|---|
committer | E.Z. Hart <hartez@gmail.com> | 2016-12-12 16:41:44 -0700 |
commit | db727808a82844fce8d20ce7817907c7ed6d34a4 (patch) | |
tree | 433b142617d2dae44c1f871223d9477f048601df /Xamarin.Forms.Controls.Issues | |
parent | bb942eb29f58a1729ade3176012da35d5afeec03 (diff) | |
download | xamarin-forms-db727808a82844fce8d20ce7817907c7ed6d34a4.tar.gz xamarin-forms-db727808a82844fce8d20ce7817907c7ed6d34a4.tar.bz2 xamarin-forms-db727808a82844fce8d20ce7817907c7ed6d34a4.zip |
Add missing interface implementations
Diffstat (limited to 'Xamarin.Forms.Controls.Issues')
-rw-r--r-- | Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/TestPages/ScreenshotConditionalApp.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/TestPages/ScreenshotConditionalApp.cs b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/TestPages/ScreenshotConditionalApp.cs index 7a311466..6e458d2b 100644 --- a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/TestPages/ScreenshotConditionalApp.cs +++ b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/TestPages/ScreenshotConditionalApp.cs @@ -273,11 +273,21 @@ namespace Xamarin.Forms.Controls _app.SwipeLeftToRight(query, swipePercentage, swipeSpeed, withInertia); } + public void SwipeLeftToRight(Func<AppQuery, AppWebQuery> query, double swipePercentage = 0.67, int swipeSpeed = 500, bool withInertia = true) + { + _app.SwipeLeftToRight(query, swipePercentage, swipeSpeed, withInertia); + } + public void SwipeRightToLeft(Func<AppQuery, AppQuery> query, double swipePercentage = 0.67, int swipeSpeed = 500, bool withInertia = true) { _app.SwipeRightToLeft(query, swipePercentage, swipeSpeed, withInertia); } + public void SwipeRightToLeft(Func<AppQuery, AppWebQuery> query, double swipePercentage = 0.67, int swipeSpeed = 500, bool withInertia = true) + { + _app.SwipeRightToLeft(query, swipePercentage, swipeSpeed, withInertia); + } + public void ScrollUp(Func<AppQuery, AppQuery> query = null, ScrollStrategy strategy = ScrollStrategy.Auto, double swipePercentage = 0.67, int swipeSpeed = 500, bool withInertia = true) { |