Project management related changes

This commit is contained in:
2026-08-24 22:57:06 +05:30
parent 71b2389221
commit 2a106a8716
67 changed files with 3565 additions and 80 deletions

View File

@@ -0,0 +1,11 @@
import re
with open('kifi-app/lib/features/projects/presentation/projects_screen.dart', 'r') as f:
content = f.read()
# Remove the AppBar section
app_bar_regex = r" appBar: AppBar\(\n title: const Text\('Projects \(Agency OS\)'\),\n backgroundColor: Colors\.white,\n foregroundColor: Colors\.black,\n elevation: 0,\n \),\n"
content = re.sub(app_bar_regex, "", content)
with open('kifi-app/lib/features/projects/presentation/projects_screen.dart', 'w') as f:
f.write(content)