From be520fc496759143fa791744fba66add2235acfc Mon Sep 17 00:00:00 2001 From: Brandon Minnick <13558917+brminnick@users.noreply.github.com> Date: Sun, 28 Apr 2024 09:17:24 -0700 Subject: [PATCH] Replace `children` with `Children` --- .../Views/Alert/AlertView.macios.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CommunityToolkit.Maui.Core/Views/Alert/AlertView.macios.cs b/src/CommunityToolkit.Maui.Core/Views/Alert/AlertView.macios.cs index 89c8e5e72..5bd099a46 100644 --- a/src/CommunityToolkit.Maui.Core/Views/Alert/AlertView.macios.cs +++ b/src/CommunityToolkit.Maui.Core/Views/Alert/AlertView.macios.cs @@ -83,7 +83,7 @@ void ConstraintInParent() [MemberNotNull(nameof(Container))] void Initialize() { - Container = new UIStackView() + Container = new UIStackView { Alignment = UIStackViewAlignment.Fill, Distribution = UIStackViewDistribution.EqualSpacing, @@ -91,7 +91,7 @@ void Initialize() TranslatesAutoresizingMaskIntoConstraints = false }; - foreach (var view in children) + foreach (var view in Children) { Container.AddArrangedSubview(view); }