Make StackLayout component derive from Layout

This commit is contained in:
Eilon Lipton 2019-10-08 09:55:21 -07:00
Родитель 8d216a91f4
Коммит dd603f2db6
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -5,7 +5,7 @@ using XF = Xamarin.Forms;
namespace Blaxamarin.Framework.Elements
{
public class StackLayout : Element
public class StackLayout : Layout
{
static StackLayout()
{
@ -34,6 +34,5 @@ namespace Blaxamarin.Framework.Elements
}
protected override RenderFragment GetChildContent() => ChildContent;
}
}