{"id":13548045,"url":"https://github.com/alexmercerind/windows_taskbar","last_synced_at":"2025-04-10T05:00:20.445Z","repository":{"id":44663965,"uuid":"418894931","full_name":"alexmercerind/windows_taskbar","owner":"alexmercerind","description":"Flutter library serving utilities related to Windows taskbar.","archived":false,"fork":false,"pushed_at":"2023-09-05T10:15:55.000Z","size":1216,"stargazers_count":163,"open_issues_count":3,"forks_count":17,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-03T01:11:08.579Z","etag":null,"topics":["desktop","flutter","hacktoberfest","itaskbarlist3","taskbar","thumbnail-toolbar","win32","windows"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alexmercerind.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2021-10-19T11:30:00.000Z","updated_at":"2025-03-29T04:10:22.000Z","dependencies_parsed_at":"2024-01-18T19:11:33.459Z","dependency_job_id":null,"html_url":"https://github.com/alexmercerind/windows_taskbar","commit_stats":{"total_commits":38,"total_committers":4,"mean_commits":9.5,"dds":"0.13157894736842102","last_synced_commit":"b3273d58aab9d71f61b51a84d5c6fb6cf0821529"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexmercerind%2Fwindows_taskbar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexmercerind%2Fwindows_taskbar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexmercerind%2Fwindows_taskbar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexmercerind%2Fwindows_taskbar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alexmercerind","download_url":"https://codeload.github.com/alexmercerind/windows_taskbar/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248161267,"owners_count":21057554,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["desktop","flutter","hacktoberfest","itaskbarlist3","taskbar","thumbnail-toolbar","win32","windows"],"created_at":"2024-08-01T12:01:04.995Z","updated_at":"2025-04-10T05:00:20.348Z","avatar_url":"https://github.com/alexmercerind.png","language":"C++","readme":"# [windows_taskbar](https://github.com/alexmercerind/windows_taskbar)\n\n#### Flutter plugin serving utilities related to Windows taskbar.\n\n## Installation\n\nAdd package to the dependencies section of the `pubspec.yaml`:\n\n```yaml\ndependencies:\n  windows_taskbar: ^1.1.2\n```\n\n\u003cbr\u003e\u003c/br\u003e\n\n\u003cimg width=\"600\" height=\"auto\" src=\"https://user-images.githubusercontent.com/28951144/205107667-c3db0382-a5fa-456d-af01-7c5ab9c94ceb.gif\"\u003e\n\u003cimg width=\"600\" height=\"auto\" src=\"https://user-images.githubusercontent.com/28951144/205107645-9732aabe-0e39-42c7-87d3-bbd2bca82fa6.gif\"\u003e\n\n## Guide\n\nA minimal usage guide for [package:windows_taskbar](https://github.com/alexmercerind/windows_taskbar).\n\n### Contents\n\n- [Set thumbnail toolbar](#set-thumbnail-toolbar)\n- [Remove thumbnail toolbar](#remove-thumbnail-toolbar)\n- [Set progress mode](#set-progress-mode)\n- [Set progress](#set-progress)\n- [Set thumbnail tooltip](#set-thumbnail-tooltip)\n- [Flash windows taskbar app icon](#flash-windows-taskbar-app-icon)\n- [Stop flashing windows taskbar app icon](#stop-flashing-windows-taskbar-app-icon)\n- [Set overlay icon (badge)](#set-overlay-icon-badge)\n- [Remove overlay icon (badge)](#remove-overlay-icon-badge)\n- [Set window title (taskbar button label)](#set-window-title-taskbar-button-label)\n- [Reset window title (or taskbar button label)](#reset-window-title-taskbar-button-label)\n- [Next steps](#next-steps)\n\n#### Set thumbnail toolbar\n\n```dart\nWindowsTaskbar.setThumbnailToolbar(\n  [\n  ThumbnailToolbarButton(\n    ThumbnailToolbarAssetIcon('assets/camera.ico'),\n      'Turn On Camera',\n      () {},\n    ),\n    ThumbnailToolbarButton(\n      ThumbnailToolbarAssetIcon('assets/microphone.ico'),\n      'Mute',\n      () {},\n      mode: ThumbnailToolbarButtonMode.disabled | ThumbnailToolbarButtonMode.dismissionClick,\n    ),\n    ThumbnailToolbarButton(\n      ThumbnailToolbarAssetIcon('assets/end_call.ico'),\n      'Disconnect',\n      () {},\n    ),\n  ],\n);\n```\n\n#### Remove thumbnail toolbar\n\n```dart\nWindowsTaskbar.resetThumbnailToolbar();\n```\n\n#### Set progress mode\n\n```dart\nWindowsTaskbar.setProgressMode(TaskbarProgressMode.indeterminate);\n```\n\n#### Set progress\n\n```dart\nWindowsTaskbar.setProgress(69, 100);\n```\n\n#### Set thumbnail tooltip\n\n```dart\nWindowsTaskbar.setThumbnailTooltip('Awesome Flutter window.');\n```\n\n#### Flash windows taskbar app icon\n\n```dart\nWindowsTaskbar.setFlashTaskbarAppIcon(\n  mode: TaskbarFlashMode.all | TaskbarFlashMode.timernofg,\n  timeout: const Duration(milliseconds: 500),\n);\n```\n\n#### Stop flashing windows taskbar app icon\n\n```dart\nWindowsTaskbar.resetFlashTaskbarAppIcon();\n```\n\n#### Set overlay icon (badge)\n\n```dart\nWindowsTaskbar.setOverlayIcon(\n  ThumbnailToolbarAssetIcon('assets/red_slash.ico'),\n  tooltip: 'Stop',\n);\n```\n\n#### Remove overlay icon (badge)\n\n```dart\nWindowsTaskbar.resetOverlayIcon();\n```\n\n#### Set window title (taskbar button label)\n\n```dart\nWindowsTaskbar.setWindowTitle('Never Gonna Give You Up');\n```\n\n#### Reset window title (taskbar button label)\n\n```dart\nWindowsTaskbar.resetWindowTitle();\n```\n\n#### Next steps\n\n- [API reference](https://pub.dev/documentation/windows_taskbar/latest/windows_taskbar/windows_taskbar-library.html) can be helpful for diving into deeper specifics.\n- [Source-code of the example application](https://github.com/alexmercerind/windows_taskbar/blob/master/example/lib/main.dart) offers some complete code samples.\n\n## Sponsor\n\nYou may consider buying me a coffee if you like this package.\n\n- [GitHub Sponsors](https://github.com/sponsors/alexmercerind)\n- [PayPal](https://paypal.me/alexmercerind)\n\n## License\n\nCopyright © 2021 \u0026 onwards, Hitesh Kumar Saini \u003c\u003csaini123hitesh@gmail.com\u003e\u003e\n\nThis project \u0026 the work under this repository is governed by MIT license that can be found in the [LICENSE](https://github.com/alexmercerind/windows_taskbar/blob/master/LICENSE) file.\n","funding_links":["https://github.com/sponsors/alexmercerind","https://paypal.me/alexmercerind"],"categories":["C++","Packages"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexmercerind%2Fwindows_taskbar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexmercerind%2Fwindows_taskbar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexmercerind%2Fwindows_taskbar/lists"}