diff --git a/src/Compatibility/Core/src/Tizen/Platform.cs b/src/Compatibility/Core/src/Tizen/Platform.cs index 65b892713830..662de0f8d9d2 100644 --- a/src/Compatibility/Core/src/Tizen/Platform.cs +++ b/src/Compatibility/Core/src/Tizen/Platform.cs @@ -85,6 +85,8 @@ internal static IVisualElementRenderer CreateRenderer(VisualElement element) vh.SetParent(nvh); } renderer = new HandlerToRendererShim(vh); + element.Handler = handler; + SetRenderer(element, renderer); } } renderer.SetElement(element); diff --git a/src/Controls/src/Core/Platform/GestureManager/GestureManager.Tizen.cs b/src/Controls/src/Core/Platform/GestureManager/GestureManager.Tizen.cs new file mode 100644 index 000000000000..344c17b7cce6 --- /dev/null +++ b/src/Controls/src/Core/Platform/GestureManager/GestureManager.Tizen.cs @@ -0,0 +1,18 @@ +#nullable enable + +using System; + +namespace Microsoft.Maui.Controls.Platform +{ + class GestureManager : IDisposable + { + public GestureManager(IViewHandler handler) + { + //TODO: Need to impl + } + + public void Dispose() + { + } + } +}