From e2248b0c065e41676070914299a51973908822f2 Mon Sep 17 00:00:00 2001 From: ggurdin Date: Wed, 25 Oct 2023 14:55:48 -0400 Subject: [PATCH] increment version number --- lib/pages/chat_list/chat_list.dart | 2 +- lib/pages/chat_list/space_view.dart | 2 +- lib/widgets/chat_settings_popup_menu.dart | 20 ++++++++++---------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/lib/pages/chat_list/chat_list.dart b/lib/pages/chat_list/chat_list.dart index 08eabe6fd..3bb0b0bb1 100644 --- a/lib/pages/chat_list/chat_list.dart +++ b/lib/pages/chat_list/chat_list.dart @@ -598,7 +598,7 @@ class ChatListController extends State setState(() {}); // #Pangea if (archivedActiveRoom) { - VRouter.of(context).to('/rooms'); + context.go('/rooms'); } // Pangea# } diff --git a/lib/pages/chat_list/space_view.dart b/lib/pages/chat_list/space_view.dart index fdd6b2954..bec5c0f6d 100644 --- a/lib/pages/chat_list/space_view.dart +++ b/lib/pages/chat_list/space_view.dart @@ -167,7 +167,7 @@ class _SpaceViewState extends State { future: () async { await room!.leave(); if (Matrix.of(context).activeRoomId == room.id) { - VRouter.of(context).to('/rooms'); + context.go('/rooms'); } }, // Pangea# diff --git a/lib/widgets/chat_settings_popup_menu.dart b/lib/widgets/chat_settings_popup_menu.dart index 9bcefcbb5..698f0cf7a 100644 --- a/lib/widgets/chat_settings_popup_menu.dart +++ b/lib/widgets/chat_settings_popup_menu.dart @@ -106,17 +106,17 @@ class ChatSettingsPopupMenuState extends State { // ], // ), // ), + // PopupMenuItem( + // value: 'todos', + // child: Row( + // children: [ + // const Icon(Icons.task_alt_outlined), + // const SizedBox(width: 12), + // Text(L10n.of(context)!.todoLists), + // ], + // ), + // ), // Pangea# - PopupMenuItem( - value: 'todos', - child: Row( - children: [ - const Icon(Icons.task_alt_outlined), - const SizedBox(width: 12), - Text(L10n.of(context)!.todoLists), - ], - ), - ), PopupMenuItem( value: 'leave', child: Row(