mirror of
https://github.com/venera-app/venera.git
synced 2025-12-16 07:01:16 +00:00
Fix some gesture conflicts
This commit is contained in:
@@ -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());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user