private async void TapGestureRecognizer_Tapped_1(object sender, EventArgs e) { rout = (rout > 360) ? rout - 360 : rout; rout += 180; await ArrowImg.RotateTo(rout, 500, Easing.SpringIn); StkItems.IsVisible = !StkItems.IsVisible; }
private async void FilterTitle_Tapped(object sender, EventArgs e) { FilterFields.IsVisible = !FilterFields.IsVisible; if (FilterFields.IsVisible) { await ArrowImg.RotateTo(180, 0, easing : Easing.SinIn); } else { await ArrowImg.RotateTo(0, 0, easing : Easing.SinIn); } }