Skip to content

Latest commit

 

History

History
 
 

win_toast

win_toast

Pub

show toast on windows platform.

Getting Started

Initialize

// initialize toast with you app, product, company names.
await WinToast.instance().initialize(
          appName: 'win_toast_example',
          productName: 'win_toast_example',
          companyName: 'mixin');

Pick a unique AUMID that will identify your Win32 app

This is typically in the form of [CompanyName].[AppName], but you want to ensure this is unique across all apps (feel free to add some digits at the end).

Show

final toast = await WinToast.instance().showToast(
      type: ToastType.text01, title: "Hello");

Credit

https://github.com/mohabouje/WinToast https://github.com/javacommons/strconv