Fix some gesture conflicts

This commit is contained in:
LiuliFox
2025-10-20 15:43:48 +08:00
parent 3d194d7f6a
commit 75c2a3a417
5 changed files with 43 additions and 4 deletions

View File

@@ -49,7 +49,10 @@ class _SearchPageState extends State<SearchPage> {
void search([String? text]) {
if (aggregatedSearch) {
context
.to(() => AggregatedSearchPage(keyword: text ?? controller.text))
.to(
() => AggregatedSearchPage(keyword: text ?? controller.text),
iosFullScreenGesture: false,
)
.then((_) => update());
} else {
context
@@ -59,6 +62,7 @@ class _SearchPageState extends State<SearchPage> {
sourceKey: searchTarget,
options: options,
),
iosFullScreenGesture: false,
)
.then((_) => update());
}