BugReportView: show progress in the button, not as a dialog.
This commit is contained in:
parent
101feacdd1
commit
36a7e6b57b
1 changed files with 2 additions and 0 deletions
|
|
@ -142,6 +142,7 @@ fun BugReportView(
|
||||||
text = stringResource(id = CommonStrings.action_send),
|
text = stringResource(id = CommonStrings.action_send),
|
||||||
onClick = { eventSink(BugReportEvents.SendBugReport) },
|
onClick = { eventSink(BugReportEvents.SendBugReport) },
|
||||||
enabled = state.submitEnabled,
|
enabled = state.submitEnabled,
|
||||||
|
showProgress = state.sending.isLoading(),
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.padding(top = 24.dp, bottom = 16.dp)
|
.padding(top = 24.dp, bottom = 16.dp)
|
||||||
|
|
@ -151,6 +152,7 @@ fun BugReportView(
|
||||||
|
|
||||||
AsyncView(
|
AsyncView(
|
||||||
async = state.sending,
|
async = state.sending,
|
||||||
|
showProgressDialog = false,
|
||||||
onSuccess = {
|
onSuccess = {
|
||||||
eventSink(BugReportEvents.ResetAll)
|
eventSink(BugReportEvents.ResetAll)
|
||||||
onDone()
|
onDone()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue