mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-11 07:37:48 +00:00
13 lines
270 B
Dart
13 lines
270 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AppLoadingIndicator extends StatelessWidget {
|
|
const AppLoadingIndicator({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: CircularProgressIndicator.adaptive(),
|
|
);
|
|
}
|
|
}
|