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

[housekeeping] Automated PR to fix formatting errors #13246

Merged
merged 1 commit into from
Dec 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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