ArchieCoder
ArchieCoder
@Kunal22shah Did you try with Skia Desktop? With 5.3.99 and 5.4.0-dev.220, in Skia the buttons are gray not blue.
@Kunal22shah I added more style files from my project and I'm able to repro the issue. Here is the new sample app: [App1Updated.zip](https://github.com/user-attachments/files/16800746/App1Updated.zip)
@Kunal22shah In WSL, I do not see the buttons as well. If you remove "Style="{StaticResource ActionButtonStyle}", you will see the buttons. The bug seems then worse in Linux. This is...
@Kunal22shah for the time being I will use the old style (that's the best workaround), but let me know when the bug will be resolved and I will test it....
@spouliot as discuss in email
Temporary, I will use this: #if HAS_UNO_SKIA_MACOS var lines = File.ReadAllLines(localPath); #else var lines = await File.ReadAllLinesAsync(localPath); #endif
Thanks for the convincing argument about the memory, yeah I will switch to each line. FYI, in my official app the ReadAllLines is done in a background thread. Despite being...