1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00
Files
mobile/src/App/Platforms/Android/Handlers/ButtonHandlerMappings.cs
2023-09-29 11:02:19 -03:00

15 lines
436 B
C#

namespace Bit.App.Handlers
{
public class ButtonHandlerMappings
{
public static void Setup()
{
Microsoft.Maui.Handlers.ButtonHandler.Mapper.AppendToMapping("CustomButtonHandler", (handler, button) =>
{
// WORKAROUND applied from https://github.com/dotnet/maui/issues/2918
handler.PlatformView.StateListAnimator = null;
});
}
}
}