mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
This was only needed for the custom scrolling background / header that was removed some time ago
16 lines
318 B
Dart
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()),
|
|
);
|
|
}
|
|
}
|