BugReportView: show progress in the button, not as a dialog.

This commit is contained in:
Benoit Marty
2023-11-03 17:29:39 +01:00
committed by Benoit Marty
parent 101feacdd1
commit 36a7e6b57b

View File

@@ -142,6 +142,7 @@ fun BugReportView(
text = stringResource(id = CommonStrings.action_send),
onClick = { eventSink(BugReportEvents.SendBugReport) },
enabled = state.submitEnabled,
showProgress = state.sending.isLoading(),
modifier = Modifier
.fillMaxWidth()
.padding(top = 24.dp, bottom = 16.dp)
@@ -151,6 +152,7 @@ fun BugReportView(
AsyncView(
async = state.sending,
showProgressDialog = false,
onSuccess = {
eventSink(BugReportEvents.ResetAll)
onDone()