mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-31 17:37:41 +00:00
10 lines
261 B
Dart
10 lines
261 B
Dart
|
import 'dart:ui';
|
||
|
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class AppScrollBehavior extends MaterialScrollBehavior {
|
||
|
@override
|
||
|
Set<PointerDeviceKind> get dragDevices =>
|
||
|
{PointerDeviceKind.touch, PointerDeviceKind.mouse, PointerDeviceKind.trackpad};
|
||
|
}
|