mirror of
https://gitlab.com/moepoi/payment.moepoi.dev.git
synced 2024-12-28 23:38:17 +01:00
10 lines
229 B
Dart
10 lines
229 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class HideScrollGlow extends ScrollBehavior {
|
||
|
@override
|
||
|
Widget buildOverscrollIndicator(
|
||
|
BuildContext context, Widget child, ScrollableDetails details) {
|
||
|
return child;
|
||
|
}
|
||
|
}
|