Skip to content

Commit

Permalink
Fix padding
Browse files Browse the repository at this point in the history
  • Loading branch information
g123k committed Jan 9, 2025
1 parent 117cdf0 commit 9c62964
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,10 @@ class _SimpleInputWidgetState extends State<SimpleInputWidget> {
_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),
],
);

Expand Down Expand Up @@ -260,6 +262,7 @@ class _SimpleInputWidgetState extends State<SimpleInputWidget> {
contentPadding: const EdgeInsetsDirectional.only(
start: LARGE_SPACE,
),
minTileHeight: 48.0,
title: child,
);
}
Expand Down

0 comments on commit 9c62964

Please sign in to comment.