Jisho-Study-Tool/lib/components/common/loading.dart

13 lines
272 B
Dart
Raw Permalink Normal View History

2020-07-13 21:21:33 +02:00
import 'package:flutter/material.dart';
class LoadingScreen extends StatelessWidget {
2021-12-01 23:09:53 +01:00
const LoadingScreen({Key? key}) : super(key: key);
2020-07-13 21:21:33 +02:00
@override
Widget build(BuildContext context) {
2021-12-01 23:09:53 +01:00
return const Center(
child: CircularProgressIndicator(),
2020-07-13 21:21:33 +02:00
);
}
}