xLayout_HeadAreaBuilder method
Widget che torna un
Implementation
Widget xLayout_HeadAreaBuilder({XView? xclView}) {
return widget.showHead
? Container(
child: Scrollbar(
thumbVisibility: true,
controller: _scrollController,
child: SingleChildScrollView(
controller: _scrollController,
child: Form(
key: UniqueKey(),
child: Container(
// margin: EdgeInsets.only(bottom: 10),
decoration: widget.decoration ?? BoxDecoration(),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: xLayout_Render_HeadView(xclView != null ? xclView : widget.xView),
))))))
: Container();
}