16 lines
383 B
Dart
16 lines
383 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class LoadingPage extends StatelessWidget {
|
|
const LoadingPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
alignment: Alignment.center,
|
|
margin: const EdgeInsets.only(top: 20),
|
|
child: const CircularProgressIndicator(
|
|
value: 0.8,
|
|
));
|
|
}
|
|
}
|