mirror of
https://github.com/bitwarden/mobile
synced 2025-12-27 05:33:23 +00:00
17 lines
488 B
C#
17 lines
488 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class ExtendedListView : ListView
|
|
{
|
|
public static readonly BindableProperty BottomPaddingProperty =
|
|
BindableProperty.Create(nameof(BottomPadding), typeof(int), typeof(ExtendedTableView), 0);
|
|
|
|
public ExtendedListView() { }
|
|
public ExtendedListView(ListViewCachingStrategy cachingStrategy)
|
|
: base(cachingStrategy) { }
|
|
|
|
public int BottomPadding { get; set; }
|
|
}
|
|
}
|