Windows Toast like Android Toast
Place TWindowsToastDialog on form;
On your form, anywhere in your source, call the MakeText procedure;
example:
WindowsToastDialog1.MakeText("Testing Windows Toast");You can change the duration, text color and background color;
MakeText(Text; Duration; BackgroundColor; TextColor);
example:
WindowsToastDialog1.MakeText('Toast on Windows Application', ToastDurationLengthShort, $FF009688, $FFFFFFFF);