yokutango-mobile-reader/lib/screens/misc/loading.dart

13 lines
272 B
Dart
Raw Normal View History

2022-01-26 00:25:07 +01:00
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(),
);
}
}