13 lines
272 B
Dart
13 lines
272 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class LoadingScreen extends StatelessWidget {
|
||
|
const LoadingScreen({Key? key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return const Center(
|
||
|
child: CircularProgressIndicator(),
|
||
|
);
|
||
|
}
|
||
|
}
|