Files
rog_app/lib/pages/loading/loading_page.dart

16 lines
383 B
Dart
Raw Normal View History

2022-05-18 19:09:26 +05:30
import 'package:flutter/material.dart';
class LoadingPage extends StatelessWidget {
2023-12-07 10:20:44 +05:30
const LoadingPage({Key? key}) : super(key: key);
2022-05-18 19:09:26 +05:30
@override
Widget build(BuildContext context) {
return Container(
2023-12-07 10:20:44 +05:30
alignment: Alignment.center,
margin: const EdgeInsets.only(top: 20),
child: const CircularProgressIndicator(
value: 0.8,
));
2022-05-18 19:09:26 +05:30
}
2023-12-07 10:20:44 +05:30
}