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

            LottieSwitchStyle style = bindableObject as LottieSwitchStyle;

            if (style == null)
            {
                return;
            }

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