diff --git a/packages/smooth_app/lib/pages/product/simple_input_widget.dart b/packages/smooth_app/lib/pages/product/simple_input_widget.dart index 96963db4cfea..bd146a556f99 100644 --- a/packages/smooth_app/lib/pages/product/simple_input_widget.dart +++ b/packages/smooth_app/lib/pages/product/simple_input_widget.dart @@ -142,8 +142,10 @@ class _SimpleInputWidgetState extends State { _getList(appLocalizations), if (extraWidget != null) extraWidget + else if (_localTerms.isEmpty) + const SizedBox(height: MEDIUM_SPACE) else - const SizedBox(height: MEDIUM_SPACE), + const SizedBox(height: VERY_SMALL_SPACE), ], ); @@ -260,6 +262,7 @@ class _SimpleInputWidgetState extends State { contentPadding: const EdgeInsetsDirectional.only( start: LARGE_SPACE, ), + minTileHeight: 48.0, title: child, ); }