mirror of
https://github.com/bitwarden/android.git
synced 2025-01-06 00:07:54 +03:00
12 lines
265 B
C#
12 lines
265 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class ExtendedListView : ListView
|
|
{
|
|
public ExtendedListView() { }
|
|
|
|
public ExtendedListView(ListViewCachingStrategy cachingStrategy)
|
|
: base(cachingStrategy) { }
|
|
}
|
|
}
|