Created
September 14, 2025 03:57
-
-
Save iVamsi/48f8247749ee8d6b46e9a0fc149bedbf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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