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 MaterialShellSectionRenderer : ShellSectionRenderer
|
|
|
|
{
|
|
|
|
public MaterialShellSectionRenderer(ShellSection section) : base(section)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override IShellTabs CreateToolbar()
|
|
|
|
{
|
2020-05-19 03:56:25 +03:00
|
|
|
return new MaterialShellTabs(System.Maui.Maui.NativeParent);
|
2019-08-29 17:12:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|