build method

  1. @override
Component build(
  1. BuildContext context
)

Describes the part of the user interface represented by this component.

Implementation

@override
Component build(final BuildContext context) {
  final state = holder.state;

  return Column(
    crossAxisAlignment: CrossAxisAlignment.start,
    children: [
      Expanded(
        child: BorderedBox(
          child: Column(
            children: [
              _buildHeader(state),
              Expanded(child: _buildBody(state)),
            ],
          ),
        ),
      ),
      _buildButtonBar(state),
    ],
  );
}