We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21f6b98 commit 3c54eecCopy full SHA for 3c54eec
app/views.py
@@ -1,5 +1,6 @@
1
from typing import Optional, List, Tuple
2
import datetime
3
+import random
4
5
from loguru import logger
6
@@ -17,6 +18,7 @@
17
18
PopupMenuItem,
19
AlertDialog,
20
TextButton,
21
+ ProgressBar,
22
)
23
from flet import icons
24
@@ -215,6 +217,10 @@ def make_contract_view(
215
217
],
216
218
),
219
220
+ ProgressBar(
221
+ color="blue",
222
+ value=random.random(), # TODO: set project progress bar
223
+ ),
224
Column(
225
[
226
# date range
@@ -321,6 +327,10 @@ def on_click_delete_project(event):
321
327
322
328
323
329
330
331
332
333
324
334
325
335
326
336
Text(f"Client: {project.client.name}"),
0 commit comments