buildForegroundBody method
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,
),
),
],
),
),
);
}