win_toast 0.1.1 win_toast: ^0.1.1 copied to clipboard
a plugin help flutter app show toast on windows platform.
win_toast #
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