From 1ee95b3fa32bbf0d21a11c853864b206757a0e31 Mon Sep 17 00:00:00 2001 From: jantunesmesias Date: Mon, 26 Aug 2024 17:59:12 -0300 Subject: [PATCH] WIP --- .../card_item_template_component_widget.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/components/templates_components/card_item_template_component/card_item_template_component_widget.dart b/lib/components/templates_components/card_item_template_component/card_item_template_component_widget.dart index a733ced6..90b73821 100644 --- a/lib/components/templates_components/card_item_template_component/card_item_template_component_widget.dart +++ b/lib/components/templates_components/card_item_template_component/card_item_template_component_widget.dart @@ -157,9 +157,9 @@ class _CardItemTemplateComponentWidgetState children: _generateStatus(), ), ] - .addToEnd(const Flexible(child: SizedBox(height: 5))) - .divide(const Flexible(child: SizedBox(height: 1))) - .addToStart(const Flexible(child: SizedBox(height: 5))), + .addToEnd(const SizedBox(height: 5)) + .divide(const SizedBox(height: 1)) + .addToStart(const SizedBox(height: 5)), ), ), _generateImage(), @@ -185,10 +185,10 @@ class _CardItemTemplateComponentWidgetState runSpacing: 4, children: _generateStatus(), ), - ].divide(const Flexible(child: SizedBox(height: 5))), + ].divide(const SizedBox(height: 5)), ), ), - ].divide(const Flexible(child: SizedBox(height: 5))), + ].divide(const SizedBox(height: 5)), ); } },