We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80d7a8d commit 1786e5eCopy full SHA for 1786e5e
lib/Screens/Detail/MediaScreen.dart
@@ -1,3 +1,5 @@
1
+import 'dart:ui';
2
+
3
import 'package:blur/blur.dart';
4
import 'package:dantotsu/Functions/Extensions.dart';
5
import 'package:dantotsu/Screens/Detail/Tabs/Info/InfoPage.dart';
@@ -88,6 +90,13 @@ class MediaInfoPageState extends State<MediaInfoPage> {
88
90
return ExpandablePageView(
89
91
controller: pageController,
92
onPageChanged: (index) => _selectedIndex.value = index,
93
+ scrollBehavior: ScrollConfiguration.of(context).copyWith(
94
+ dragDevices: {
95
+ PointerDeviceKind.touch,
96
+ PointerDeviceKind.mouse,
97
+ PointerDeviceKind.trackpad
98
+ },
99
+ ),
100
children: [
101
loaded
102
? SingleChildScrollView(child: InfoPage(mediaData: mediaData))
0 commit comments