Xamarin Forms(MVVM)中的扩展/动画列表

时间:2017-10-26 08:30:55

标签: xamarin

这个动画下拉列表可以在Xamarin中完成吗?如果是的话,该怎么做?

https://dribbble.com/shots/2340386-Shopping-List

1 个答案:

答案 0 :(得分:0)

这里是教程链接: https://trailheadtechnology.com/xamarin-forms-fancy-animations/

//collapse
MyContent.LayoutTo(new Rectangle(MyContent.Bounds.X, MyContent.Bounds.Y, MyContent.Bounds.Width, 0), 500, Easing.CubicIn)
//expand
MyContent.LayoutTo(new Rectangle(MyContent.Bounds.X, MyContent.Bounds.Y, MyContent.Bounds.Width, 300), 500, Easing.CubicOut)