@gitethan/snackbar
v11.6.2
Published
Fork of Quenty's Snackbar. Snackbars provide lightweight feedback on an operation at the base of the screen. They automatically disappear after a timeout or user interaction. There can only be one on the screen at a time.
Downloads
3
Readme
Snackbar
Snackbars provide lightweight feedback on an operation at the base of the screen. They automatically disappear after a timeout or user interaction. There can only be one on the screen at a time.
Installation
npm install @quenty/snackbar --save
Usage
Using the snackbar should be done via the SnackbarManager, which ensures only one snackbar can be visible at a time.
local snackbarServiceClient = serviceBag:GetService(SnackbarServiceClient)
snackbarServiceClient:ShowSnackbar("Settings saved!", {
CallToAction = {
Text = "Undo";
OnClick = function()
print("Activated action")
end;
}
})