chore: upgrade flutter to 3.24

This commit is contained in:
lauren n. liberda 2024-08-09 01:48:42 +02:00
commit 55196e7c9d
No known key found for this signature in database
GPG key ID: 1613DD32FE28C3EA
6 changed files with 25 additions and 25 deletions

View file

@ -59,7 +59,7 @@ class AddWidgetTileView extends StatelessWidget {
),
),
),
ButtonBar(
OverflowBar(
children: [
TextButton(
onPressed: controller.addWidget,

View file

@ -141,7 +141,7 @@ class ChatView extends StatelessWidget {
return PopScope(
canPop: controller.selectedEvents.isEmpty && !controller.showEmojiPicker,
onPopInvoked: (pop) async {
onPopInvokedWithResult: (pop, _) async {
if (pop) return;
if (controller.selectedEvents.isNotEmpty) {
controller.clearSelectedEvents();

View file

@ -32,7 +32,7 @@ class ChatListView extends StatelessWidget {
canPop: controller.selectMode == SelectMode.normal &&
!controller.isSearchMode &&
controller.activeSpaceId == null,
onPopInvoked: (pop) {
onPopInvokedWithResult: (pop, _) {
if (pop) return;
if (controller.activeSpaceId != null) {
controller.clearActiveSpace();