From 6baf02e25811422afd321347652de840d31d5783 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sun, 18 Apr 2021 14:14:21 +0200 Subject: [PATCH] Improve push notifications screen --- lib/ui/routes/push_notifications_route.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/ui/routes/push_notifications_route.dart b/lib/ui/routes/push_notifications_route.dart index 92fadca..82a5da2 100644 --- a/lib/ui/routes/push_notifications_route.dart +++ b/lib/ui/routes/push_notifications_route.dart @@ -129,9 +129,11 @@ class PushNotificationsConfigurationWidgetState if (widget.onChanged != null) widget.onChanged(); }, ), + SizedBox(height: 5), _NotificationOption( title: tr("Use independent notifications service"), - description: tr("Protect more your privacy."), + description: tr( + "Protect more your privacy, but drains battery and is less reliable."), option: PushNotificationsStatus.INDEPENDENT, current: currStatus, available: @@ -141,6 +143,7 @@ class PushNotificationsConfigurationWidgetState if (widget.onChanged != null) widget.onChanged(); }, ), + SizedBox(height: 5), _NotificationOption( title: tr("Do not send notification"), option: PushNotificationsStatus.DISABLED,