Skip to content

Commit

Permalink
Refactor WrapperView to draw drawable features (dotnet#186)
Browse files Browse the repository at this point in the history
* Refactor WrapperView to draw drawable features

* Update class names and devide files

* Override NeesContainer to remove duplicated code

* Update class names
  • Loading branch information
JoonghyunCho authored and myroot committed Aug 24, 2022
1 parent b4d2d17 commit e585b0f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/Core/src/Platform/Tizen/IWrapperViewCanvas.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

namespace Microsoft.Maui
{
public interface IWrapperViewCanvas
{
public IWrapperViewDrawables Drawables { get; }
}
}
2 changes: 1 addition & 1 deletion src/Core/src/Platform/Tizen/WrapperView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Microsoft.Maui.Platform
{
public interface IBackgroundCanvas
public partial class WrapperView : Canvas, IWrapperViewCanvas
{
public SkiaGraphicsView BackgroundCanvas { get; }
}
Expand Down

0 comments on commit e585b0f

Please sign in to comment.