mirror of
				https://gitlab.com/famedly/fluffychat.git
				synced 2025-11-03 22:07:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			290 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			290 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
//@dart=2.12
 | 
						|
 | 
						|
import 'package:flutter/gestures.dart';
 | 
						|
import 'package:flutter/material.dart';
 | 
						|
 | 
						|
class CustomScrollBehavior extends MaterialScrollBehavior {
 | 
						|
  @override
 | 
						|
  Set<PointerDeviceKind> get dragDevices => {
 | 
						|
        PointerDeviceKind.touch,
 | 
						|
        PointerDeviceKind.mouse,
 | 
						|
      };
 | 
						|
}
 |