buildSettingActions method

Widget buildSettingActions(
  1. BuildContext context
)

///////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////// //////////////////////// Just a line breaker //////////////////////////// ///////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////// Settings action section widget. 设置操作区

This displayed at the top of the screen. 该区域显示在屏幕上方。

Implementation

/// Settings action section widget.
/// 设置操作区
///
/// This displayed at the top of the screen.
/// 该区域显示在屏幕上方。
Widget buildSettingActions(BuildContext context) {
  return buildInitializeWrapper(
    builder: (CameraValue v, __) {
      if (v.isRecordingVideo) {
        return const SizedBox.shrink();
      }
      return Padding(
        padding: const EdgeInsets.symmetric(horizontal: 12),
        child: Row(
          children: <Widget>[
            if (cameras.length > 1) buildCameraSwitch(context),
            const Spacer(),
            buildFlashModeSwitch(context, v),
          ],
        ),
      );
    },
  );
}