This commit is contained in:
ashilkn
2025-06-24 09:47:34 +05:30
parent b1837dec75
commit bcc293358f

View File

@@ -326,7 +326,7 @@ class _FullScreenMemoryState extends State<FullScreenMemory> {
return GestureDetector(
onTapUp: (TapUpDetails details) {
final screenWidth = MediaQuery.of(context).size.width;
final screenWidth = MediaQuery.sizeOf(context).width;
final edgeWidth = screenWidth * 0.20;
if (details.localPosition.dx < edgeWidth) {
_goToPrevious(inheritedData);