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

@@ -874,7 +874,10 @@ class _ImageFavoritesState extends State<ImageFavorites> {
child: InkWell(
borderRadius: BorderRadius.circular(8),
onTap: () {
context.to(() => const ImageFavoritesPage());
context.to(
() => const ImageFavoritesPage(),
iosFullScreenGesture: false,
);
},
child: Column(
mainAxisSize: MainAxisSize.min,
@@ -993,7 +996,10 @@ class _ImageFavoritesState extends State<ImageFavorites> {
maxCount: maxCount,
enableTranslation: displayType != 2,
onTap: (text) {
context.to(() => ImageFavoritesPage(initialKeyword: text));
context.to(
() => ImageFavoritesPage(initialKeyword: text),
iosFullScreenGesture: false,
);
},
);
}).toList(),