change app directory

This commit is contained in:
2023-07-19 21:01:19 +08:00
parent 8b759c94ec
commit 02ac33fc07
56 changed files with 781 additions and 535 deletions

View File

@ -0,0 +1,26 @@
using Blahblah.FlowerApp.Controls;
using Blahblah.FlowerApp.Platforms.iOS.Controls;
using Microsoft.Maui.Handlers;
namespace Blahblah.FlowerApp.Handlers;
partial class WaterfallLayoutHandler : ViewHandler<WaterfallLayout, MauiWaterfallLayout>
{
static void MapColumns(WaterfallLayoutHandler handler, WaterfallLayout layout)
{
handler.PlatformView?.UpdateColumns();
}
protected override MauiWaterfallLayout CreatePlatformView() => new MauiWaterfallLayout(VirtualView);
protected override void ConnectHandler(MauiWaterfallLayout platformView)
{
base.ConnectHandler(platformView);
}
protected override void DisconnectHandler(MauiWaterfallLayout platformView)
{
platformView.Dispose();
base.DisconnectHandler(platformView);
}
}