add monochrome icon style for macos tray
This commit is contained in:
BIN
mobile/apps/auth/assets/icons/auth-icon-monochrome.png
Normal file
BIN
mobile/apps/auth/assets/icons/auth-icon-monochrome.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
@@ -40,7 +40,9 @@ Future<void> initSystemTray() async {
|
||||
if (PlatformUtil.isMobile()) return;
|
||||
String path = Platform.isWindows
|
||||
? 'assets/icons/auth-icon.ico'
|
||||
: 'assets/icons/auth-icon.png';
|
||||
: Platform.isMacOS
|
||||
? 'assets/icons/auth-icon-monochrome.png'
|
||||
: 'assets/icons/auth-icon.png';
|
||||
await trayManager.setIcon(path);
|
||||
Menu menu = Menu(
|
||||
items: [
|
||||
|
||||
Reference in New Issue
Block a user