mirror of
https://github.com/Linloir/Flutter-Wordle.git
synced 2025-12-17 06:18:12 +08:00
18 lines
412 B
Dart
18 lines
412 B
Dart
/*
|
|
* @Author : Linloir
|
|
* @Date : 2022-03-10 22:07:28
|
|
* @LastEditTime : 2022-03-10 22:07:29
|
|
* @Description : Scroll behavior
|
|
*/
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/gestures.dart';
|
|
|
|
class MyScrollBehavior extends ScrollBehavior {
|
|
@override
|
|
Set<PointerDeviceKind> get dragDevices => {
|
|
PointerDeviceKind.touch,
|
|
PointerDeviceKind.mouse,
|
|
};
|
|
}
|