mirror of
https://github.com/bitwarden/android.git
synced 2025-01-07 16:57:35 +03: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) { }
|
|||
|
}
|
|||
|
}
|