windows_taskbar 1.0.0 copy "windows_taskbar: ^1.0.0" to clipboard
windows_taskbar: ^1.0.0 copied to clipboard

outdated

Flutter plugin serving utilities related to Windows taskbar.

windows_taskbar

Flutter plugin serving utilities related to Windows taskbar 💙

Install #

dependencies: 
  windows_taskbar: ^1.0.0

Demo #

Checkout the example Flutter application here.

Documentation #

Set thumbnail toolbar

WindowsTaskbar.setThumbnailToolbar(
  [
  ThumbnailToolbarButton(
    ThumbnailToolbarAssetIcon('assets/camera.ico'),
      'Turn On Camera',
      () {},
    ),
    ThumbnailToolbarButton(
      ThumbnailToolbarAssetIcon('assets/microphone.ico'),
      'Mute',
      () {},
      mode: ThumbnailToolbarButtonMode.disabled | ThumbnailToolbarButtonMode.dismissionClick,
    ),
    ThumbnailToolbarButton(
      ThumbnailToolbarAssetIcon('assets/end_call.ico'),
      'Disconnect',
      () {},
    ),
  ],
);

Clear thumbnail toolbar

WindowsTaskbar.clearThumbnailToolbar();

Set progress mode

WindowsTaskbar.setProgressMode(TaskbarProgressMode.indeterminate);

Set progress

WindowsTaskbar.setProgress(69, 100);

Set thumbnail tooltip

WindowsTaskbar.setThumbnailTooltip('Awesome Flutter window.');

Flash windows taskbar app icon

WindowsTaskbar.flashTaskbarAppIcon(
  mode: TaskbarFlashMode.all | TaskbarFlashMode.timernofg,
  timeout: const Duration(milliseconds: 500),
);

Stop flashing windows taskbar app icon

WindowsTaskbar.stopFlashingTaskbarAppIcon();

License #

Copyright © 2021 & 2022, Hitesh Kumar Saini <[email protected]>

This library & all the work in this repository is under MIT license that can be found in the LICENSE file.

Consider donating me at https://www.paypal.me/alexmercerind if you like the plugin. So that I can atleast pay my internet bill.

106
likes
0
pub points
92%
popularity

Publisher

unverified uploader

Flutter plugin serving utilities related to Windows taskbar.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, path

More

Packages that depend on windows_taskbar