Skip to content

Commit

Permalink
Replace children with Children
Browse files Browse the repository at this point in the history
  • Loading branch information
brminnick committed Apr 28, 2024
1 parent 0192d2d commit be520fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,15 @@ void ConstraintInParent()
[MemberNotNull(nameof(Container))]
void Initialize()
{
Container = new UIStackView()
Container = new UIStackView
{
Alignment = UIStackViewAlignment.Fill,
Distribution = UIStackViewDistribution.EqualSpacing,
Axis = UILayoutConstraintAxis.Horizontal,
TranslatesAutoresizingMaskIntoConstraints = false
};

foreach (var view in children)
foreach (var view in Children)
{
Container.AddArrangedSubview(view);
}
Expand Down

0 comments on commit be520fc

Please sign in to comment.