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, )); } }