This commit is contained in:
Ankit Mahato
2024-03-23 14:19:24 +05:30
parent b73a4ab9c4
commit e3084e8844
2 changed files with 3 additions and 1 deletions

View File

@ -135,7 +135,7 @@ class ViewCodePane extends StatelessWidget {
child: Column(
children: [
SizedBox(
height: constraints.maxWidth > 340 ? kHeaderHeight : kTabHeight,
height: kHeaderHeight,
child: Row(
children: [
Expanded(

View File

@ -182,6 +182,8 @@ class DropdownButtonCodegenLanguage extends StatelessWidget {
child: Text(
value.label,
style: kTextStyleButton,
overflow: TextOverflow.ellipsis,
maxLines: 1,
),
),
);