This commit is contained in:
Ivan Antunes 2024-08-26 11:03:37 -03:00
parent 1a4bab1865
commit 4cb88b5759
1 changed files with 11 additions and 9 deletions

View File

@ -79,7 +79,8 @@ class _CardItemTemplateComponentWidgetState extends State<CardItemTemplateCompon
), ),
), ),
const SizedBox(width: 2.5), const SizedBox(width: 2.5),
Text( Flexible(
child: Text(
text, text,
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
style: FlutterFlowTheme.of(context).bodyMedium.override( style: FlutterFlowTheme.of(context).bodyMedium.override(
@ -89,6 +90,7 @@ 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),
), ),
),
) )
], ],
); );