reorganize settings

This commit is contained in:
Fabian Freund
2025-07-03 15:46:12 +02:00
parent 57ffe4e7c8
commit 40085a701d
7 changed files with 193 additions and 106 deletions
@@ -68,6 +68,23 @@ class SettingsScreen extends HookConsumerWidget {
},
),
),
const SizedBox(height: 8),
Card(
color: Theme.of(context).highlightColor,
clipBehavior: Clip.antiAlias,
child: ListTile(
title: const Text('Developer'),
contentPadding: const EdgeInsets.symmetric(
vertical: 8.0,
horizontal: 16.0,
),
leading: const Icon(Icons.developer_mode),
trailing: const Icon(Icons.chevron_right),
onTap: () async {
await DeveloperSettingsRoute().push(context);
},
),
),
],
);
},