mirror of
https://github.com/h7x4/Jisho-Study-Tool.git
synced 2025-02-02 07:10:48 +01:00
13 lines
247 B
Dart
13 lines
247 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class LoadingScreen extends StatelessWidget {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Container(
|
||
|
child: Center(
|
||
|
child: CircularProgressIndicator(),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|