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

added missing iOS constructor in ListViewRenderer #14971

Merged
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
6 changes: 6 additions & 0 deletions Xamarin.Forms.Platform.iOS/Renderers/ListViewRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ public ListViewRenderer()

}

[Internals.Preserve(Conditional = true)]
public ListViewRenderer(IntPtr handle)
{

}

public override SizeRequest GetDesiredSize(double widthConstraint, double heightConstraint)
{
return Control.GetSizeRequest(widthConstraint, heightConstraint, DefaultRowHeight, DefaultRowHeight);
Expand Down