Files
lunasea/lib/core/ui/refresh_indicator.dart
2022-01-02 15:57:46 -05:00

17 lines
493 B
Dart

import 'package:flutter/material.dart';
class LunaRefreshIndicator extends RefreshIndicator {
LunaRefreshIndicator({
GlobalKey<RefreshIndicatorState>? key,
required BuildContext context,
required Future<void> Function() onRefresh,
required Widget child,
}) : super(
key: key,
backgroundColor: Theme.of(context).primaryColor,
color: Theme.of(context).colorScheme.secondary,
onRefresh: onRefresh,
child: child,
);
}