2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-28 13:36:50 +00:00
inventree-app/lib/widget/progress.dart
2021-02-11 21:38:48 +11:00

13 lines
185 B
Dart

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