13 lines
374 B
C#
13 lines
374 B
C#
namespace Blahblah.FlowerApp.Controls;
|
|
|
|
public class WaterfallLayout : View
|
|
{
|
|
public static readonly BindableProperty ColumnsProperty = BindableProperty.Create(nameof(Columns), typeof(int), typeof(WaterfallLayout), defaultValue: 2);
|
|
|
|
public int Columns
|
|
{
|
|
get => (int)GetValue(ColumnsProperty);
|
|
set => SetValue(ColumnsProperty, value);
|
|
}
|
|
}
|