Exemple #1
0
        public override void CopyFrom(BindableObject bindableObject)
        {
            base.CopyFrom(bindableObject);

            LottieButtonStyle style = bindableObject as LottieButtonStyle;

            if (style == null)
            {
                return;
            }

            LottieUrl = style.LottieUrl;
            PlayRange = style.PlayRange;
        }
Exemple #2
0
 public LottieButtonStyle(LottieButtonStyle style) : base(style)
 {
 }