File: Layout\VerticalStackLayout.cs | Web Access |
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
#nullable disable using Microsoft.Maui.Layouts; namespace Microsoft.Maui.Controls { [ContentProperty(nameof(Children))] public class VerticalStackLayout : StackBase { protected override ILayoutManager CreateLayoutManager() => new VerticalStackLayoutManager(this); } } |