fix: Cancel search on back button tap on android

This commit is contained in:
Krille 2023-08-11 09:20:55 +02:00
parent c42ce8d1db
commit d2247018e6
No known key found for this signature in database

View file

@ -89,6 +89,10 @@ class ChatListView extends StatelessWidget {
return WillPopScope(
onWillPop: () async {
final selMode = controller.selectMode;
if (controller.isSearchMode) {
controller.cancelSearch();
return false;
}
if (selMode != SelectMode.normal) {
controller.cancelAction();
return false;