mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 11:36:24 +00:00
Add progress indicators to a bunch o' stuff
This commit is contained in:
parent
dba45c7600
commit
b1b85a33f8
8 changed files with 172 additions and 96 deletions
13
lib/widget/progress.dart
Normal file
13
lib/widget/progress.dart
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
/*
|
||||
* Construct a circular progress indicator
|
||||
*/
|
||||
Widget progressIndicator() {
|
||||
|
||||
return Center(
|
||||
child: CircularProgressIndicator()
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue