showGenericError

suspend fun ScaffoldState.showGenericError(context: Context, duration: SnackbarDuration = SnackbarDuration.Short, onGenericErrorDismissed: () -> Unit = {})

Shows a generic error Snackbar at the bottom of the Scaffold.

Parameters

duration

duration to control how long snackbar will be shown in SnackbarHost, either SnackbarDuration.Short, SnackbarDuration.Long or SnackbarDuration.Indefinite

onGenericErrorDismissed

function executed when the Snackbar is dismissed because the duration expires or the user close it


suspend fun BottomSheetScaffoldState.showGenericError(context: Context, duration: SnackbarDuration = SnackbarDuration.Short, onGenericErrorDismissed: () -> Unit = {})

Shows a generic error Snackbar at the bottom of the BottomSheetScaffold.

Parameters

duration

duration to control how long snackbar will be shown in SnackbarHost, either SnackbarDuration.Short, SnackbarDuration.Long or SnackbarDuration.Indefinite

onGenericErrorDismissed

function executed when the Snackbar is dismissed because the duration expires or the user close it