mirror of
https://github.com/bitwarden/mobile
synced 2025-12-26 13:13:28 +00:00
13 lines
265 B
C#
13 lines
265 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class ExtendedListView : ListView
|
|
{
|
|
public ExtendedListView() { }
|
|
|
|
public ExtendedListView(ListViewCachingStrategy cachingStrategy)
|
|
: base(cachingStrategy) { }
|
|
}
|
|
}
|