File: Platform\iOS\GraphicsViewExtensions.cs | Web Access |
Project: src\src\Core\src\Core.csproj (Microsoft.Maui) |
using Microsoft.Maui.Graphics.Platform; namespace Microsoft.Maui.Platform { public static class GraphicsViewExtensions { public static void UpdateDrawable(this PlatformGraphicsView PlatformGraphicsView, IGraphicsView graphicsView) { PlatformGraphicsView.Drawable = graphicsView.Drawable; } } } |