feat(legal): in-app Privacy & rules screen with plain-words summaries and links to the full documents

This commit is contained in:
vjrj 2026-07-13 00:48:29 +02:00
parent 9668e0e70b
commit a7e10eba7a
5 changed files with 180 additions and 0 deletions

View file

@ -67,6 +67,12 @@ class SettingsScreen extends StatelessWidget {
trailing: const Icon(Icons.chevron_right),
onTap: () => context.push('/about'),
),
ListTile(
leading: const Icon(Icons.privacy_tip_outlined, color: seedGreen),
title: Text(t.legal.title),
trailing: const Icon(Icons.chevron_right),
onTap: () => context.push('/legal'),
),
],
),
);