system_windows 0.1.3
system_windows: ^0.1.3 copied to clipboard
Get opened windows and check which one of them is currently focused
system_windows #
A Flutter package that that enables support for system tray menu for desktop flutter apps. Currently working only on MacOS.
Getting Started #
Install the package using pubspec.yaml
API #
Below we show how to use system_windows
...
var systemWindows = SystemWindows();
...
final activeApps = await systemWindows.getActiveApps();
As simple as that. Feel free to contribute :)