Skip to content

Commit 03cc6e4

Browse files
committed
[Tizen] Fix build error on PageHandler
1 parent 7ce50b2 commit 03cc6e4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/Core/src/Handlers/Page/PageHandler.Tizen.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using EColor = ElmSharp.Color;
1+
using Tizen.UIExtensions.Common;
2+
using EColor = ElmSharp.Color;
23

34
namespace Microsoft.Maui.Handlers
45
{
@@ -14,7 +15,10 @@ public static void MapBackground(PageHandler handler, IContentView page)
1415
handler.GetWrappedNativeView()?.UpdateBackground(page);
1516
}
1617

17-
public static void MapTitle(PageHandler handler, IContentView page)
18+
[MissingMapper]
19+
public static void MapTitle(PageHandler handler, IContentView page) { }
20+
21+
protected override ContentCanvas CreateNativeView()
1822
{
1923
var view = base.CreateNativeView();
2024
view.BackgroundColor = (DeviceInfo.GetDeviceType() == DeviceType.TV) ? EColor.Transparent : EColor.White;

0 commit comments

Comments
 (0)