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.topCenter, margin: const EdgeInsets.only(top: 20), child: const CircularProgressIndicator( value: 0.8, ) ); } }