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
277 B
Dart
Raw Normal View History

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