We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I am trying to cut too long label text on a SpeedDialChild but I can't find no way to do it. This is an excerpt of my source code:
SpeedDialChild( child: Icon(Icons.system_update_alt, color: Colors.white), backgroundColor: Colors.blue, onTap: () async { //... }, labelWidget: Expanded( child: Row( children: [ Padding( padding: const EdgeInsets.only(right: 16.0), child: Container( padding: EdgeInsets.symmetric(vertical: 6, horizontal: 8), decoration: BoxDecoration( borderRadius: BorderRadius.circular(6), color: Colors.blue, ), child: Text( "Text too much long that I am not able to cut", overflow: TextOverflow.ellipsis, style: TextStyle( backgroundColor: Colors.blue, fontWeight: FontWeight.w500, color: Colors.white, overflow: TextOverflow.ellipsis, ), ), ), ), ], ), ), )
and below the wrong result that I get:
Thank you in advance for your support
The text was updated successfully, but these errors were encountered:
Hi, has anyone had this problem yet?
Sorry, something went wrong.
No branches or pull requests
Hi, I am trying to cut too long label text on a SpeedDialChild but I can't find no way to do it.
This is an excerpt of my source code:
and below the wrong result that I get:
Thank you in advance for your support
The text was updated successfully, but these errors were encountered: