handleFloatingComponentInteraction method

void handleFloatingComponentInteraction(
  1. LayoutPosition position
)

处理浮动组件交互(重置自动隐藏定时器)

Implementation

void handleFloatingComponentInteraction(LayoutPosition position) {
  if (!isBound) {
    debugPrint('ClassLayoutController: Controller not bound to layout');
    return;
  }

  _state!.handleFloatingComponentInteraction(position);
}