Withdraw Interest Dialog
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
is Visible
A Boolean value that determines whether or not the dialog is visible
on Dismiss Action
A Function to be called when the dialog is dismissed
on Confirm Action
A Function to be called when the user confirms their withdrawal
book
The MBook to withdraw the interest from
interest Object
The current InterestObject that needs to be deleted
view Model
The BookInfoScreenViewModel to access the necessary functions from the viewModel