File: Platform\Tizen\ElementExtensions.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
using NView = Tizen.NUI.BaseComponents.View;
 
namespace Microsoft.Maui.Platform
{
	public static partial class ElementExtensions
	{
		public static NView ToContainerView(this IElement? view, IMauiContext context) =>
			new ContainerView(context) { CurrentView = view };
	}
}