fix: removido flexible do card item

This commit is contained in:
Ivan Antunes 2024-08-26 12:40:48 -03:00
parent 7fc7f50aa5
commit 9ec4a862b0
1 changed files with 9 additions and 11 deletions

View File

@ -79,8 +79,7 @@ class _CardItemTemplateComponentWidgetState extends State<CardItemTemplateCompon
), ),
), ),
const SizedBox(width: 2.5), const SizedBox(width: 2.5),
Flexible( Text(
child: Text(
text, text,
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
style: FlutterFlowTheme.of(context).bodyMedium.override( style: FlutterFlowTheme.of(context).bodyMedium.override(
@ -90,7 +89,6 @@ class _CardItemTemplateComponentWidgetState extends State<CardItemTemplateCompon
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
useGoogleFonts: GoogleFonts.asMap().containsKey(FlutterFlowTheme.of(context).bodyMediumFamily), useGoogleFonts: GoogleFonts.asMap().containsKey(FlutterFlowTheme.of(context).bodyMediumFamily),
), ),
),
) )
], ],
); );