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 6bbbe9c commit b73a4abCopy full SHA for b73a4ab
lib/widgets/codegen_previewer.dart
@@ -135,7 +135,7 @@ class ViewCodePane extends StatelessWidget {
135
child: Column(
136
children: [
137
SizedBox(
138
- height: kHeaderHeight,
+ height: constraints.maxWidth > 340 ? kHeaderHeight : kTabHeight,
139
child: Row(
140
141
Expanded(
lib/widgets/dropdowns.dart
@@ -157,6 +157,7 @@ class DropdownButtonCodegenLanguage extends StatelessWidget {
157
Widget build(BuildContext context) {
158
final surfaceColor = Theme.of(context).colorScheme.surface;
159
return DropdownButton<CodegenLanguage>(
160
+ isExpanded: true,
161
focusColor: surfaceColor,
162
value: codegenLanguage,
163
icon: const Icon(
0 commit comments