feat: Remove manual location update functionality and improve password handling in room login

This commit is contained in:
Janez T
2025-10-16 13:44:35 +02:00
parent 23c439a92e
commit 520f343261
3 changed files with 57 additions and 111 deletions

View File

@@ -226,28 +226,6 @@ class ContactTile extends StatelessWidget {
),
const SizedBox(height: 4),
],
// Type label (only for rooms - hide for chat and repeater)
if (contact.type == ContactType.room) ...[
Row(
children: [
Container(
padding: const EdgeInsets.symmetric(
horizontal: 6,
vertical: 2,
),
decoration: BoxDecoration(
color: _getTypeColor(contact.type, context).withOpacity(0.2),
borderRadius: BorderRadius.circular(4),
),
child: Text(
contact.type.displayName,
style: Theme.of(context).textTheme.labelSmall,
),
),
],
),
const SizedBox(height: 4),
],
// Last seen + GPS info combined
Row(
children: [