chore: Follow up leave abandoned DM room

This commit is contained in:
Krille 2023-01-15 10:05:54 +01:00
commit 033cc8de31
2 changed files with 21 additions and 1 deletions

View file

@ -298,6 +298,8 @@ class ChatView extends StatelessWidget {
children: [
TextButton.icon(
style: TextButton.styleFrom(
padding:
const EdgeInsets.all(16),
foregroundColor:
Theme.of(context)
.colorScheme
@ -306,12 +308,16 @@ class ChatView extends StatelessWidget {
icon: const Icon(
Icons.archive_outlined,
),
onPressed: () {},
onPressed: controller.leaveChat,
label: Text(
L10n.of(context)!.leave,
),
),
TextButton.icon(
style: TextButton.styleFrom(
padding:
const EdgeInsets.all(16),
),
icon: const Icon(
Icons.chat_outlined,
),