Files
flutter/lib/widgets/core/progress_indicator.dart
Roland Geider cd4a848b79 Remove the CustomScrollView
This was only needed for the custom scrolling background / header that was
removed some time ago
2024-11-10 15:45:52 +01:00

16 lines
318 B
Dart

import 'package:flutter/material.dart';
class BoxedProgressIndicator extends StatelessWidget {
const BoxedProgressIndicator({
super.key,
});
@override
Widget build(BuildContext context) {
return const SizedBox(
height: 200,
child: Center(child: CircularProgressIndicator()),
);
}
}