This repository has been archived on 2024-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
dialer/lib/widgets/loading_indicator.dart

11 lines
260 B
Dart
Raw Permalink Normal View History

2024-10-18 19:45:35 +00:00
import 'package:flutter/material.dart';
class LoadingIndicatorWidget extends StatelessWidget {
2024-10-26 12:47:45 +00:00
const LoadingIndicatorWidget({super.key});
2024-10-18 19:45:35 +00:00
@override
Widget build(BuildContext context) {
return const Center(child: CircularProgressIndicator());
}
}