buildSettingMenuSlot function

Widget buildSettingMenuSlot(
  1. SlotBuildContext ctx,
  2. double width,
  3. double height
)

构建设置面板插槽的默认实现。 Builds the default settings menu slot content.

设置面板的显示由边缘触发监听器处理, 此插槽仅作为占位组件存在。

The settings panel display is handled by an edge-trigger listener; this slot only exists as a placeholder widget.

Implementation

Widget buildSettingMenuSlot(
  SlotBuildContext ctx,
  double width,
  double height,
) {
  return const SizedBox.shrink();
}