flower-story/FlowerApp/Platforms/iOS/Handlers/OptionEntryHandler.cs
2023-08-02 23:45:04 +08:00

17 lines
460 B
C#

using Microsoft.Maui.Handlers;
using Microsoft.Maui.Platform;
namespace Blahblah.FlowerApp.Platforms.iOS.Handlers;
class OptionEntryHandler : EntryHandler
{
protected override void ConnectHandler(MauiTextField platformView)
{
base.ConnectHandler(platformView);
platformView.BackgroundColor = UIKit.UIColor.Clear;
platformView.Layer.BorderWidth = 0;
platformView.BorderStyle = UIKit.UITextBorderStyle.None;
}
}