We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b73a4ab commit e3084e8Copy full SHA for e3084e8
lib/widgets/codegen_previewer.dart
@@ -135,7 +135,7 @@ class ViewCodePane extends StatelessWidget {
135
child: Column(
136
children: [
137
SizedBox(
138
- height: constraints.maxWidth > 340 ? kHeaderHeight : kTabHeight,
+ height: kHeaderHeight,
139
child: Row(
140
141
Expanded(
lib/widgets/dropdowns.dart
@@ -182,6 +182,8 @@ class DropdownButtonCodegenLanguage extends StatelessWidget {
182
child: Text(
183
value.label,
184
style: kTextStyleButton,
185
+ overflow: TextOverflow.ellipsis,
186
+ maxLines: 1,
187
),
188
189
);
0 commit comments