openMoreDialog method

Future<bool> openMoreDialog()

打开更多弹窗(举报、设置等)

平台支持:

  • ✅ Android: IDJXWidget.openMoreDialog()
  • ✅ iOS: DJXDrawVideoViewController.playletMoreButtonClick()

Implementation

Future<bool> openMoreDialog() async {
  _ensureReady();
  try {
    final result = await PangrowthContent.openMoreDialogDramaSwipeFlow(
      _swipeFlowId!,
    );
    debugPrint('DramaSwipeFlowController: 打开更多弹窗 - $_swipeFlowId');
    return result;
  } catch (e) {
    debugPrint('DramaSwipeFlowController: 打开更多弹窗失败 - $e');
    rethrow;
  }
}