chore: Follow up spaces design

pull/1226/head
Krille 1 year ago
parent 47d1165b45
commit 1b95694a58
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

@ -652,7 +652,11 @@ class ChatListController extends State<ChatList>
name: displayname,
),
const SizedBox(width: 12),
Text(displayname),
Text(
displayname,
style:
TextStyle(color: Theme.of(context).colorScheme.onSurface),
),
],
),
),

@ -168,6 +168,19 @@ class ChatListItem extends StatelessWidget {
onTap: () => onLongPress?.call(context),
),
),
if (hovered)
Positioned(
top: -2,
right: -2,
child: Material(
color: backgroundColor,
borderRadius: BorderRadius.circular(16),
child: const Icon(
Icons.arrow_drop_down_circle_outlined,
size: 18,
),
),
),
],
),
),

Loading…
Cancel
Save