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