Skip to content

Commit e585b0f

Browse files
JoonghyunChomyroot
authored andcommitted
Refactor WrapperView to draw drawable features (dotnet#186)
* Refactor WrapperView to draw drawable features * Update class names and devide files * Override NeesContainer to remove duplicated code * Update class names
1 parent b4d2d17 commit e585b0f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+

2+
namespace Microsoft.Maui
3+
{
4+
public interface IWrapperViewCanvas
5+
{
6+
public IWrapperViewDrawables Drawables { get; }
7+
}
8+
}

src/Core/src/Platform/Tizen/WrapperView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace Microsoft.Maui.Platform
1313
{
14-
public interface IBackgroundCanvas
14+
public partial class WrapperView : Canvas, IWrapperViewCanvas
1515
{
1616
public SkiaGraphicsView BackgroundCanvas { get; }
1717
}

0 commit comments

Comments
 (0)