2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-28 05:26:47 +00:00
inventree-app/lib/widget/progress.dart
2021-09-28 20:24:55 +10:00

13 lines
185 B
Dart

import "package:flutter/material.dart";
/*
* Construct a circular progress indicator
*/
Widget progressIndicator() {
return Center(
child: CircularProgressIndicator()
);
}