Project management related changes
This commit is contained in:
10
scratch/patch_project_sheet_tint.py
Normal file
10
scratch/patch_project_sheet_tint.py
Normal file
@@ -0,0 +1,10 @@
|
||||
import re
|
||||
|
||||
with open('kifi-app/lib/features/projects/presentation/widgets/add_project_sheet.dart', 'r') as f:
|
||||
content = f.read()
|
||||
|
||||
# Add filled: true, fillColor to DropdownButtonFormField
|
||||
content = content.replace("border: OutlineInputBorder(borderRadius: BorderRadius.circular(12)),\n contentPadding:", "border: OutlineInputBorder(borderRadius: BorderRadius.circular(12), borderSide: BorderSide.none),\n filled: true,\n fillColor: Theme.of(context).colorScheme.primary.withValues(alpha: 0.05),\n contentPadding:")
|
||||
|
||||
with open('kifi-app/lib/features/projects/presentation/widgets/add_project_sheet.dart', 'w') as f:
|
||||
f.write(content)
|
||||
Reference in New Issue
Block a user