Skip to content
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 @@ -42,7 +42,7 @@ protected override UICollectionViewLayout SelectLayout()
var weakItemsView = new WeakReference<CarouselView>(ItemsView);
var weakController = new WeakReference<CarouselViewController2>((CarouselViewController2)Controller);

return LayoutFactory2.CreateCarouselLayout(weakItemsView,weakController);
return LayoutFactory2.CreateCarouselLayout(weakItemsView, weakController);
}

protected override void ScrollToRequested(object sender, ScrollToRequestEventArgs args)
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/tests/TestCases.HostApp/Issues/Issue28822.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
public class Issue28822NavigationPage : NavigationPage
{
public Issue28822NavigationPage() : base(new Issue28822()) { }

public class Issue28822 : ContentPage
{
public Issue28822()
Expand Down