Skip to content

Commit

Permalink
[housekeeping] Automated PR to fix formatting errors (#1265)
Browse files Browse the repository at this point in the history
Automated dotnet-format update

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Jun 24, 2023
1 parent 76a5c8c commit dfbc6f2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/CommunityToolkit.Maui/Layouts/DockLayout.shared.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,36 +12,36 @@ public class DockLayout : Layout, IDockLayout
/// <summary>
/// Docking position for a view.
/// </summary>
public static readonly BindableProperty DockPositionProperty = BindableProperty.CreateAttached(nameof(DockPosition),
typeof(DockPosition),
typeof(DockLayout),
public static readonly BindableProperty DockPositionProperty = BindableProperty.CreateAttached(nameof(DockPosition),
typeof(DockPosition),
typeof(DockLayout),
DockPosition.None,
propertyChanged: OnDockPositionPropertyChanged);

/// <summary>
/// If true, the last child is expanded to fill the remaining space (default: true).
/// </summary>
public static readonly BindableProperty ShouldExpandLastChildProperty = BindableProperty.Create(nameof(ShouldExpandLastChild),
typeof(bool),
typeof(DockLayout),
public static readonly BindableProperty ShouldExpandLastChildProperty = BindableProperty.Create(nameof(ShouldExpandLastChild),
typeof(bool),
typeof(DockLayout),
true,
propertyChanged: OnShouldExpandLastChildPropertyChanged);

/// <summary>
/// Horizontal spacing between docked views.
/// </summary>
public static readonly BindableProperty HorizontalSpacingProperty = BindableProperty.Create(nameof(HorizontalSpacing),
typeof(double),
typeof(DockLayout),
public static readonly BindableProperty HorizontalSpacingProperty = BindableProperty.Create(nameof(HorizontalSpacing),
typeof(double),
typeof(DockLayout),
0.0d,
propertyChanged: OnHorizontalSpacingPropertyChanged);

/// <summary>
/// Vertical spacing between docked views.
/// </summary>
public static readonly BindableProperty VerticalSpacingProperty = BindableProperty.Create(nameof(VerticalSpacing),
typeof(double),
typeof(DockLayout),
public static readonly BindableProperty VerticalSpacingProperty = BindableProperty.Create(nameof(VerticalSpacing),
typeof(double),
typeof(DockLayout),
0.0d,
propertyChanged: OnVerticalSpacingPropertyChanged);

Expand Down

0 comments on commit dfbc6f2

Please sign in to comment.