1 instantiation of FormsCAKeyFrameAnimation
Microsoft.Maui.Controls.Compatibility (1)
iOS\Renderers\ImageAnimationHelper.cs (1)
101 return new FormsCAKeyFrameAnimation
19 references to FormsCAKeyFrameAnimation
Microsoft.Maui.Controls.Compatibility (19)
iOS\Renderers\FormsUIImageView.cs (2)
13 FormsCAKeyFrameAnimation _animation; 41 public FormsCAKeyFrameAnimation Animation
iOS\Renderers\ImageAnimationHelper.cs (9)
82 public FormsCAKeyFrameAnimation CreateKeyFrameAnimation() 136 static public FormsCAKeyFrameAnimation CreateAnimationFromCGImageSource(CGImageSource imageSource) 138 FormsCAKeyFrameAnimation animation = null; 188 static public async Task<FormsCAKeyFrameAnimation> CreateAnimationFromStreamImageSourceAsync(StreamImageSource imageSource, CancellationToken cancelationToken = default(CancellationToken)) 190 FormsCAKeyFrameAnimation animation = null; 209 static public async Task<FormsCAKeyFrameAnimation> CreateAnimationFromUriImageSourceAsync(UriImageSource imageSource, CancellationToken cancelationToken = default(CancellationToken)) 211 FormsCAKeyFrameAnimation animation = null; 230 static public FormsCAKeyFrameAnimation CreateAnimationFromFileImageSource(FileImageSource imageSource) 232 FormsCAKeyFrameAnimation animation = null;
iOS\Renderers\ImageElementManager.cs (1)
210 FormsCAKeyFrameAnimation animation = await handler.LoadImageAnimationAsync(source, scale: (float)UIScreen.MainScreen.Scale).ConfigureAwait(false);
iOS\Renderers\ImageRenderer.cs (7)
116 Task<FormsCAKeyFrameAnimation> LoadImageAnimationAsync(ImageSource imagesource, CancellationToken cancelationToken = default(CancellationToken), float scale = 1); 142 public Task<FormsCAKeyFrameAnimation> LoadImageAnimationAsync(ImageSource imagesource, CancellationToken cancelationToken = default(CancellationToken), float scale = 1) 144 FormsCAKeyFrameAnimation animation = ImageAnimationHelper.CreateAnimationFromFileImageSource(imagesource as FileImageSource); 182 public async Task<FormsCAKeyFrameAnimation> LoadImageAnimationAsync(ImageSource imagesource, CancellationToken cancelationToken = default(CancellationToken), float scale = 1) 184 FormsCAKeyFrameAnimation animation = await ImageAnimationHelper.CreateAnimationFromStreamImageSourceAsync(imagesource as StreamImageSource, cancelationToken).ConfigureAwait(false); 222 public async Task<FormsCAKeyFrameAnimation> LoadImageAnimationAsync(ImageSource imagesource, CancellationToken cancelationToken = default(CancellationToken), float scale = 1) 224 FormsCAKeyFrameAnimation animation = await ImageAnimationHelper.CreateAnimationFromUriImageSourceAsync(imagesource as UriImageSource, cancelationToken).ConfigureAwait(false);