feat: terms and condition

This commit is contained in:
2026-07-06 18:27:06 +03:30
parent 3e7e069487
commit 5b0a66bb54
7 changed files with 181 additions and 0 deletions
@@ -197,6 +197,18 @@ class ProfileScreen extends StatelessWidget {
),
const SizedBox(height: 8),
_statsSection(context, d),
const SizedBox(height: 16),
Align(
alignment: Alignment.center,
child: TextButton.icon(
onPressed: () => context.push('/terms'),
icon: const Icon(Icons.gavel, color: AppColors.gold, size: 18),
label: const Text(
'شرایط و قوانین',
style: TextStyle(color: AppColors.gold, fontSize: 14),
),
),
),
],
),
);