Skip to content

Instantly share code, notes, and snippets.

@iVamsi
Created September 14, 2025 03:57
Show Gist options
  • Save iVamsi/48f8247749ee8d6b46e9a0fc149bedbf to your computer and use it in GitHub Desktop.
Save iVamsi/48f8247749ee8d6b46e9a0fc149bedbf to your computer and use it in GitHub Desktop.
// Undo action with precise 5-second window
showCustomSnackbar(
message = "Item deleted",
actionLabel = "Undo",
onAction = { restoreItem() },
durationMillis = 5000
)
// Quick success confirmation
showCustomSnackbar(
message = "File saved successfully",
durationMillis = 2000
)
// Critical error with extended display time
showCustomSnackbar(
message = "Payment failed - contact support",
durationMillis = 12000
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment