Make phone device rows cards matching the notifications list

Wrap compact (phone) device rows in a Card instead of a bare
Material+Divider so they get the same rounded, spaced look as the
notifications list. Drop the row divider on narrow layouts and reduce
the phone page size to 5 to account for the taller card rows.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
rzuasti
2026-06-04 18:27:04 -04:00
co-authored by Claude Opus 4.8
parent f64b4d3559
commit 52533f447c
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -312,7 +312,7 @@ class DeviceRowCompact extends StatelessWidget {
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
return Material(
return Card(
color: device.isRegistered ? null : theme.colorScheme.secondaryContainer,
child: ListTile(
onTap: () => context.push('/devices/${device.macAddress}'),