desktop_active_window 0.0.2 copy "desktop_active_window: ^0.0.2" to clipboard
desktop_active_window: ^0.0.2 copied to clipboard

discontinuedreplaced by: active_window

A flutter plugin to get active foreground window on MacOS, Windows and Linux.

dotup_flutter_active_window #

A flutter plugin to get active foreground window on MacOS, Windows and Linux.

Usage #

A simple usage example:

import 'package:dotup_flutter_active_window/dotup_flutter_active_window.dart';

main() {
  final windowInfo = await DotupFlutterActiveWindow.getActiveWindowInfo;

  // or with observer
  final filterFromDb = ActiveWindowFilter(value: 'dotup_', field: ActiveWindowProperty.title);
  final windowObserver = ActiveWindowObserver()
      ..addFilter((windowInfo) => windowInfo?.title.contains('main') == false)
      ..addFilter(ActiveWindowFilterGenerator().generate(filterFromDb))
      ..listen((event) {
        print(event);
      });
    windowObserver.start();
}

dotup.de

Install #

flutter pub add dotup_flutter_active_window

dotup_flutter_themed on pub.dev #

Other widgets on pub.dev #

Other open source flutter projects on Github #

Other open source dart projects on Github #

Flutter simulator | DFFP3 #

Go to https://flutter-apps.ml and check out the awesome flutter simulator !

Flutter simulator

dotup IT solutions #

0
likes
110
points
26
downloads

Publisher

unverified uploader

Weekly Downloads

A flutter plugin to get active foreground window on MacOS, Windows and Linux.

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

dotup_dart_utils, flutter

More

Packages that depend on desktop_active_window