Muk snack bar is a type of alert prompt that shows at the bottom of the screen. Muk snack bar can have a title and a button for users to click. You configure the colors in MukAppTheme. It follows the platform type from MukAppData.
For details on how to show the Muk snack bar, please refer to the code below.
using Muk;
// Snack Bar
public void ShowSnackBar()
{
MukSnackBarManager.Instance.SetTitle("This is Snack Bar");
MukSnackBarManager.Instance.SetActionButtonTitle("OK");
MukSnackBarManager.Instance.SetActionButtonOnClick( () => {MukSnackBarManager.Instance.Hide();});
MukSnackBarManager.Instance.Show();
}