Fixed visual bugs, added notifications on document upload success, enabled editing in inbox, added hints

This commit is contained in:
Anton Stubenbord
2023-01-11 18:28:42 +01:00
parent a4c4726c16
commit 4d7af3fffb
34 changed files with 1046 additions and 627 deletions

View File

@@ -91,15 +91,16 @@ class LocalNotificationService {
progress: progress,
actions: status == TaskStatus.success
? [
AndroidNotificationAction(
NotificationResponseAction.openCreatedDocument.name,
"Open",
showsUserInterface: true,
),
AndroidNotificationAction(
NotificationResponseAction.acknowledgeCreatedDocument.name,
"Acknowledge",
),
//TODO: Implement once moved to new routing
// AndroidNotificationAction(
// NotificationResponseAction.openCreatedDocument.name,
// "Open",
// showsUserInterface: true,
// ),
// AndroidNotificationAction(
// NotificationResponseAction.acknowledgeCreatedDocument.name,
// "Acknowledge",
// ),
]
: [],
),