Co-authored-by: AlexisDanlos <91090088+AlexisDanlos@users.noreply.github.com> Reviewed-on: #54 Co-authored-by: AlexisDanlos <alexis.danlos@epitech.eu> Co-committed-by: AlexisDanlos <alexis.danlos@epitech.eu>
11 lines
260 B
Dart
11 lines
260 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class LoadingIndicatorWidget extends StatelessWidget {
|
|
const LoadingIndicatorWidget({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(child: CircularProgressIndicator());
|
|
}
|
|
}
|