Adrian Samoticha
Adrian Samoticha
Is there anything that speaks against making an alternative dark-mode version that simply uses a different color palette and [only shows up when dark mode is enabled](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#specifying-the-theme-an-image-is-shown-to)?
Did you follow the [installation instructions](https://github.com/alexmercerind/flutter_acrylic#macos) and modify the `MainFlutterWindow.swift` file as described? Also, did you get any warnings in your console output?
What you can do is define the sidebar as a transparent `SizedBox` of fixed width (assuming its width should not be modifiable by the user) that is placed to the...
The macOS port offers a variety of different [WindowEffect](https://alexmercerind.github.io/docs/flutter_acrylic/#available-effects)s that map to equivalent [NSVisualEffectView.Material](https://developer.apple.com/documentation/appkit/nsvisualeffectview/material)s. I have tried to make the Windows-only WindowEffects map to macOS Materials that are “as close...
Apparently making it possible to control the window's opacity and blur radius the same way the macOS terminal does is not really feasible since it relies on `CGSSetWindowBackgroundBlurRadius`, which is...
> Perhaps though, how it is displayed is less critical as long as it is clear and as long as a copy gets you the value in preferred format? Well,...
I guess you're right. Perhaps I should just change the color code format to `#AARRGGBB` in my application, then? I've set it to `#RRGGBBAA` because I believed that was the...
> Finally, I use another package, https://pub.dev/packages/contextual_menu That package has precisely the same issue. You still need to hide the `MenuItem` when importing `material.dart`.
Such functionality is not supported at the moment. I'm currently not quite sure what's the best way to implement it, though. I wanted to check how [macos_ui](https://pub.dev/packages/macos_ui) goes about solving...
Turns out that macOS asks the user for permission when a program attempts to retrieve the current wallpaper using the [wallpaper](https://crates.io/crates/wallpaper) crate which might make it less than ideal for...