Skip to content

Commit e3084e8

Browse files
committed
fixes
1 parent b73a4ab commit e3084e8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/widgets/codegen_previewer.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class ViewCodePane extends StatelessWidget {
135135
child: Column(
136136
children: [
137137
SizedBox(
138-
height: constraints.maxWidth > 340 ? kHeaderHeight : kTabHeight,
138+
height: kHeaderHeight,
139139
child: Row(
140140
children: [
141141
Expanded(

lib/widgets/dropdowns.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,8 @@ class DropdownButtonCodegenLanguage extends StatelessWidget {
182182
child: Text(
183183
value.label,
184184
style: kTextStyleButton,
185+
overflow: TextOverflow.ellipsis,
186+
maxLines: 1,
185187
),
186188
),
187189
);

0 commit comments

Comments
 (0)