change app directory
This commit is contained in:
12
FlowerApp/Controls/WaterfallLayout.cs
Normal file
12
FlowerApp/Controls/WaterfallLayout.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user