- new appicon - smartRefreshIndicator (https://github.com/flutter/flutter/issues/65356#issuecomment-2410727567)
29 lines
698 B
Dart
29 lines
698 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class SmartRefreshIndicator extends StatelessWidget {
|
|
final Future<void> Function() onRefresh;
|
|
final Widget child;
|
|
|
|
const SmartRefreshIndicator({
|
|
super.key,
|
|
required this.onRefresh,
|
|
required this.child,
|
|
});
|
|
|
|
@override
|
|
Widget build(context) {
|
|
return LayoutBuilder(
|
|
builder: (context, constraints) => RefreshIndicator(
|
|
onRefresh: onRefresh,
|
|
child: SingleChildScrollView(
|
|
physics: const AlwaysScrollableScrollPhysics(),
|
|
child: ConstrainedBox(
|
|
constraints: BoxConstraints(minHeight: constraints.maxHeight),
|
|
child: child,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|