Skip to content

Commit

Permalink
chore: expose ListViewBase.NativePanel
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaoy312 committed Aug 25, 2022
1 parent 762c5e2 commit 72f522d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Uno.UI/Helpers/ListViewHelper.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
using Windows.UI.Xaml.Controls;

namespace Uno.UI.Helpers
{
#if __IOS__ || __ANDROID__
public static class ListViewHelper
{
public static NativeListViewBase GetNativePanel(ListViewBase lvb) => lvb.NativePanel;
}
#endif
}

0 comments on commit 72f522d

Please sign in to comment.