buildForegroundBody method

Widget buildForegroundBody(
  1. BuildContext context,
  2. BoxConstraints constraints
)

Implementation

Widget buildForegroundBody(BuildContext context, BoxConstraints constraints) {
  return SafeArea(
    child: Padding(
      padding: const EdgeInsets.only(bottom: 20),
      child: Column(
        children: <Widget>[
          Semantics(
            sortKey: const OrdinalSortKey(0),
            hidden: innerController == null,
            child: buildSettingActions(context),
          ),
          const Spacer(),
          ExcludeSemantics(child: buildCaptureTips(innerController)),
          Semantics(
            sortKey: const OrdinalSortKey(2),
            hidden: innerController == null,
            child: buildCaptureActions(
              context: context,
              constraints: constraints,
              controller: innerController,
            ),
          ),
        ],
      ),
    ),
  );
}