Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Automated dotnet-format update (#13246)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Dec 29, 2020
1 parent fa44c1d commit 4ebb84b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ protected override void Init()
};

AddFlyoutItem(contentPage, "Top Item");

var flyoutItem = AddFlyoutItem("Click Me and You Should see 2 Items show up");
flyoutItem.Route = "ExpandMe";
flyoutItem.AutomationId = "ExpandMe";
Expand All @@ -59,7 +59,7 @@ protected override void OnNavigating(ShellNavigatingEventArgs args)
{
base.OnNavigating(args);

if(!args.Target.FullLocation.ToString().Contains("ExpandMe"))
if (!args.Target.FullLocation.ToString().Contains("ExpandMe"))
{
return;
}
Expand Down
4 changes: 2 additions & 2 deletions Xamarin.Forms.Core/Shell/Shell.cs
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ protected override void OnBindingContextChanged()
if (FlyoutFooterView != null)
SetInheritedBindingContext(FlyoutFooterView, BindingContext);
}


internal void SendFlyoutItemsChanged()
{
Expand All @@ -833,7 +833,7 @@ internal void SendFlyoutItemsChanged()

List<List<Element>> IShellController.GenerateFlyoutGrouping()
{
if(_currentFlyoutViews == null)
if (_currentFlyoutViews == null)
UpdateFlyoutGroupings();

return _currentFlyoutViews;
Expand Down

0 comments on commit 4ebb84b

Please sign in to comment.