Skip to content

Commit 437b8ec

Browse files
committed
fix: no data request widget
1 parent 8296962 commit 437b8ec

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

lib/blue_forms/widgets/form_async_dependency.dart

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ class _FormAsyncDependencyState extends material.State<_FormAsyncDependency> {
6767
dataKey: widget.definition.dataKey,
6868
onLoad: widget.definition.onLoad,
6969
internalWidgetsPadding: context.paddingL,
70+
noDataRequestedWidget: widget.definition.noDataRequestedWidget,
7071
builder: (context, data, retry)
7172
{
7273
FormElement formElement = widget.definition.builder(data);

lib/blue_forms/widgets/form_group.dart

+5-3
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,11 @@ class _FormGroup extends StatelessWidget {
9494
}
9595

9696
groupChildren.add(
97-
Row(
98-
crossAxisAlignment: CrossAxisAlignment.start,
99-
children: rowChildren,
97+
IntrinsicHeight(
98+
child: Row(
99+
crossAxisAlignment: CrossAxisAlignment.stretch,
100+
children: rowChildren,
101+
),
100102
)
101103
);
102104
rowChildren = [];

0 commit comments

Comments
 (0)