feature: add flower
This commit is contained in:
16
FlowerApp/Platforms/Android/Handlers/OptionEntryHandler.cs
Normal file
16
FlowerApp/Platforms/Android/Handlers/OptionEntryHandler.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using AndroidX.AppCompat.Widget;
|
||||
using Microsoft.Maui.Controls.Compatibility.Platform.Android;
|
||||
using Microsoft.Maui.Handlers;
|
||||
|
||||
namespace Blahblah.FlowerApp.Platforms.Android.Handlers;
|
||||
|
||||
class OptionEntryHandler : EntryHandler
|
||||
{
|
||||
protected override void ConnectHandler(AppCompatEditText platformView)
|
||||
{
|
||||
base.ConnectHandler(platformView);
|
||||
|
||||
platformView.Background = null;
|
||||
platformView.SetBackgroundColor(Colors.Transparent.ToAndroid());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user