Yu-Core

Results 2 comments of Yu-Core

> We also have the same problem in our IOS app. It is working on Android. I tried adjusting CSS but to no avail. > > I used [this](https://github.com/drasticactions/MauiRepros/blob/main/StatusBarHack/MainPage.xaml.cs#L30-L52) hack...

临时方案,添加css ``` @media (hover: none) { .theme--light.m-btn:hover::before { opacity: 0; } .theme--light.m-btn:focus::before { opacity: 0; } .theme--light.m-btn--active:hover::before, .theme--light.m-btn--active::before { opacity: 0; } .theme--light.m-btn--active:focus::before { opacity: 0; } .theme--dark.m-btn:hover::before { opacity:...