File: Editor\Editor.iOS.cs | Web Access |
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
#nullable disable namespace Microsoft.Maui.Controls { public partial class Editor { public static void MapText(EditorHandler handler, Editor editor) => MapText((IEditorHandler)handler, editor); public static void MapText(IEditorHandler handler, Editor editor) { Platform.TextExtensions.UpdateText(handler.PlatformView, editor); } } } |