mirror of
				https://gitlab.com/famedly/fluffychat.git
				synced 2025-10-31 20:17:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			276 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			276 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:flutter/gestures.dart';
 | |
| import 'package:flutter/material.dart';
 | |
| 
 | |
| class CustomScrollBehavior extends MaterialScrollBehavior {
 | |
|   @override
 | |
|   Set<PointerDeviceKind> get dragDevices => {
 | |
|         PointerDeviceKind.touch,
 | |
|         PointerDeviceKind.mouse,
 | |
|       };
 | |
| }
 | 
