We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cbb9f6 commit 86dab70Copy full SHA for 86dab70
lib/feature/presentation/widget/widget_loading_center_full_screen.dart
@@ -0,0 +1,16 @@
1
+import 'package:dipantau_desktop_client/feature/presentation/widget/widget_custom_circular_progress_indicator.dart';
2
+import 'package:flutter/material.dart';
3
+
4
+class WidgetLoadingCenterFullScreen extends StatelessWidget {
5
+ const WidgetLoadingCenterFullScreen({Key? key}) : super(key: key);
6
7
+ @override
8
+ Widget build(BuildContext context) {
9
+ return Container(
10
+ width: double.infinity,
11
+ height: double.infinity,
12
+ color: Colors.black.withOpacity(.5),
13
+ child: const WidgetCustomCircularProgressIndicator(),
14
+ );
15
+ }
16
+}
0 commit comments