Skip to content

Commit

Permalink
Bump to latest
Browse files Browse the repository at this point in the history
- Added GestureManager.Tizen.cs (dotnet#1489)
- Set handler to shimmed handler so it doesn't get reshimmed  (dotnet#1483)
- Turn XamlC on by default (dotnet#1422)
- and so on
  • Loading branch information
rookiejava committed Apr 13, 2022
1 parent b0b4206 commit 7a93000
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Compatibility/Core/src/Tizen/Platform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
@@ -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()
{
}
}
}

0 comments on commit 7a93000

Please sign in to comment.