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 b764dfb commit 4347294Copy full SHA for 4347294
packages/devtools_app/lib/src/shared/console/console.dart
@@ -209,10 +209,11 @@ class _ConsoleOutputState extends State<_ConsoleOutput>
209
),
210
211
// consider constraining a max height.
212
- Padding(
213
- padding: const EdgeInsets.only(top: denseSpacing),
214
- child: widget.footer!,
215
- ),
+ if (widget.footer != null)
+ Padding(
+ padding: const EdgeInsets.only(top: denseSpacing),
+ child: widget.footer,
216
+ ),
217
],
218
219
0 commit comments