Add designs templates

This commit is contained in:
Hillel Coren 2023-11-09 18:45:08 +02:00
parent 589e9483a4
commit bd1d619604
1 changed files with 4 additions and 4 deletions

View File

@ -420,15 +420,15 @@ class _ClientPdfViewState extends State<ClientPdfView> {
child: isDesktop(context) child: isDesktop(context)
? Row( ? Row(
children: [ children: [
datePicker,
SizedBox(width: 16),
statusPicker,
SizedBox(width: 16),
if (hasDesignTemplatesForEntityType( if (hasDesignTemplatesForEntityType(
state.designState.map, EntityType.client)) ...[ state.designState.map, EntityType.client)) ...[
designPicker, designPicker,
SizedBox(width: 16), SizedBox(width: 16),
], ],
datePicker,
SizedBox(width: 16),
statusPicker,
SizedBox(width: 16),
sectionPicker, sectionPicker,
], ],
) )