WithdrawInterestDialog

fun WithdrawInterestDialog(isVisible: Boolean, onDismissAction: () -> Unit, onConfirmAction: () -> Unit, book: MBook, interestObject: InterestObject, viewModel: BookInfoScreenViewModel)

This composable is the Withdraw Interest Dialog. It is displayed whenever a user would like to withdraw their interest in a book listing.

Parameters

isVisible

A Boolean value that determines whether or not the dialog is visible

onDismissAction

A Function to be called when the dialog is dismissed

onConfirmAction

A Function to be called when the user confirms their withdrawal

book

The MBook to withdraw the interest from

interestObject

The current InterestObject that needs to be deleted

viewModel

The BookInfoScreenViewModel to access the necessary functions from the viewModel