KvadrantToast
fun KvadrantToast(visible: Boolean, title: String, modifier: Modifier = Modifier, message: String? = null, onDismiss: () -> Unit = {}, onClick: () -> Unit? = null, cyrillic: FontFamily? = null)
The notification that slides down from the top and waits ten seconds.
From the top, not the bottom. Material's snackbar rises from the bottom edge over the content it is talking about; Metro's toast comes down over the status bar, because on a phone the bottom of the screen belongs to the application bar. Anyone reaching for a SnackbarHost here gets the right behaviour in the wrong place.
Ten seconds is the phone's timeout, not a preference.