Ejemplo n.º 1
0
 void OnSwipedDown(System.Object sender, Xamarin.Forms.SwipedEventArgs e)
 {
     if (_isExpanded)
     {
         SwipeView.TranslateTo(0, 400, 200, Easing.Linear);
         _isExpanded = false;
     }
 }
Ejemplo n.º 2
0
 void OnSwipedUp(System.Object sender, Xamarin.Forms.SwipedEventArgs e)
 {
     if (!_isExpanded)
     {
         SwipeView.TranslateTo(0, 0, 200, Easing.Linear);
         _isExpanded = true;
     }
 }