Files
wehub-resource-sync bb087aad19
CI / format (push) Failing after 2s
CI / packaging (push) Failing after 0s
CI / test (push) Failing after 3s
chore: import upstream snapshot with attribution
2026-07-13 11:58:56 +08:00

16 lines
299 B
Dart

import 'package:flutter/material.dart';
class LoadingDialog extends StatelessWidget {
const LoadingDialog();
@override
Widget build(BuildContext context) {
return const PopScope(
canPop: false,
child: Center(
child: CircularProgressIndicator(),
),
);
}
}