antler119 / system_tray

A Flutter package that makes it easy to customize and work with your Flutter desktop app's system tray.
MIT License
214 stars 51 forks source link

Adds support template icons on macOS. #62

Closed BirjuVachhani closed 1 year ago

BirjuVachhani commented 1 year ago

This PR adds support for specifying whether system tray icon is a template icon on macOS. Template icons are icons that are tinted by macOS based on background.

Fixes #55

Before

setImage(path);

After

setImage(path, isTemplate: true);