This commit is contained in:
jantunesmesias 2024-08-26 10:04:21 -03:00
parent 4006bc3566
commit 4c9c0cda24
2 changed files with 3 additions and 3 deletions

View File

@ -65,11 +65,10 @@ class _MenuCardItemState extends State<MenuCardItem> {
), ),
), ),
), ),
Align( Flexible(
alignment: const AlignmentDirectional(0.0, 0.0),
child: Text( child: Text(
widget.title ?? '', widget.title ?? '',
overflow: TextOverflow.ellipsis, // overflow: TextOverflow.ellipsis,
style: FlutterFlowTheme.of(context).titleLarge.override( style: FlutterFlowTheme.of(context).titleLarge.override(
fontFamily: 'Nunito', fontFamily: 'Nunito',
color: FlutterFlowTheme.of(context).primaryText, color: FlutterFlowTheme.of(context).primaryText,

View File

@ -420,6 +420,7 @@ class _MenuComponentWidgetState extends State<MenuComponentWidget> {
ptText: 'Preferências de Configuração', ptText: 'Preferências de Configuração',
), ),
), ),
MenuCardItem(icon: null, action: () {}, title: ''),
]; ];
}(); }();