Skip to content

Commit e319ec6

Browse files
committed
feat(app_configuration): add descriptions to reporting settings
- Add subtitle descriptions for headline, source, and comment reporting settings - Improve clarity and user understanding of reporting options
1 parent 48dddbe commit e319ec6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/app_configuration/widgets/reporting_settings_form.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ class ReportingSettingsForm extends StatelessWidget {
4848
const SizedBox(height: AppSpacing.lg),
4949
SwitchListTile(
5050
title: Text(l10n.enableHeadlineReportingLabel),
51+
subtitle: Text(l10n.enableHeadlineReportingDescription),
5152
value: reportingConfig.headlineReportingEnabled,
5253
onChanged: (value) {
5354
final newConfig = reportingConfig.copyWith(
@@ -66,6 +67,7 @@ class ReportingSettingsForm extends StatelessWidget {
6667
),
6768
SwitchListTile(
6869
title: Text(l10n.enableSourceReportingLabel),
70+
subtitle: Text(l10n.enableSourceReportingDescription),
6971
value: reportingConfig.sourceReportingEnabled,
7072
onChanged: (value) {
7173
final newConfig = reportingConfig.copyWith(
@@ -84,6 +86,7 @@ class ReportingSettingsForm extends StatelessWidget {
8486
),
8587
SwitchListTile(
8688
title: Text(l10n.enableCommentReportingLabel),
89+
subtitle: Text(l10n.enableCommentReportingDescription),
8790
value: reportingConfig.commentReportingEnabled,
8891
onChanged: (value) {
8992
final newConfig = reportingConfig.copyWith(

0 commit comments

Comments
 (0)