Files
Utsav Ghimire 769527862b initial commit
2023-03-02 11:06:39 +05:45

15 lines
299 B
Dart

import 'package:flutter/material.dart';
class AppLoading extends StatelessWidget {
const AppLoading({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: CircularProgressIndicator(),
),
);
}
}