From 74b758bab2436ecbd98f91f80948c9fbe88e6597 Mon Sep 17 00:00:00 2001 From: "Michael W. Aziz" Date: Thu, 15 Jan 2026 13:50:35 +0200 Subject: [PATCH] [FIX] Action field longer padding. --- lib/src/Fields/src/base.dart | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/lib/src/Fields/src/base.dart b/lib/src/Fields/src/base.dart index 7cb01b6..1b50e02 100644 --- a/lib/src/Fields/src/base.dart +++ b/lib/src/Fields/src/base.dart @@ -422,7 +422,17 @@ class _AstromicFieldBaseState extends State { ); }, ), - widget.fieldStackedWidget != null ? widget.fieldStackedWidget!(_finalVerticalPadding(_style(), forceRespectBorder: _config.respectBorderWidthPadding).vertical * 2, _finalBorderShape(_style())) : Container(), + if (widget.fieldStackedWidget != null) + Positioned.fill( + child: LayoutBuilder( + builder: (BuildContext context, BoxConstraints constraints) { + return widget.fieldStackedWidget!( + constraints.maxHeight, + _finalBorderShape(_style()), + ); + }, + ), + ), ], ), ),