feat: Finalize bulk edits and reworked form fields

This commit is contained in:
Anton Stubenbord
2023-04-13 22:43:41 +02:00
parent 83d8abeae2
commit d621a3bbe7
41 changed files with 936 additions and 995 deletions

View File

@@ -35,6 +35,7 @@ class AddTagPage extends StatelessWidget {
colorPickerType: ColorPickerType.materialPicker,
initialValue: Color((Random().nextDouble() * 0xFFFFFF).toInt())
.withOpacity(1.0),
readOnly: true,
),
FormBuilderCheckbox(
name: Tag.isInboxTagKey,

View File

@@ -32,7 +32,8 @@ class EditTagPage extends StatelessWidget {
decoration: InputDecoration(
label: Text(S.of(context)!.color),
),
colorPickerType: ColorPickerType.blockPicker,
colorPickerType: ColorPickerType.materialPicker,
readOnly: true,
),
FormBuilderCheckbox(
initialValue: tag.isInboxTag,