2019-08-29 17:12:00 +03:00
|
|
|
using ElmSharp;
|
|
|
|
using Tizen.NET.MaterialComponents;
|
2020-05-19 03:56:25 +03:00
|
|
|
using System.Maui.Platform.Tizen;
|
2019-08-29 17:12:00 +03:00
|
|
|
|
2020-05-19 03:56:25 +03:00
|
|
|
namespace System.Maui.Material.Tizen
|
2019-08-29 17:12:00 +03:00
|
|
|
{
|
|
|
|
public class MaterialNavigationDrawer : MNavigationDrawer, INavigationDrawer
|
|
|
|
{
|
|
|
|
public MaterialNavigationDrawer(EvasObject parent) : base(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
EvasObject INavigationDrawer.NavigationView
|
|
|
|
{
|
|
|
|
get => NavigationView;
|
|
|
|
set => NavigationView = value as MNavigationView;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|