vscreenFocusCurrentIndexList property

List<int> get vscreenFocusCurrentIndexList

Implementation

List<int> get vscreenFocusCurrentIndexList {
  final current = focusPageCurrentPT;
  if(current != null){
    final currentVScreen = findVirtualScreen(current);
    if(currentVScreen != null){
      final currentSingleNode = currentVScreen.vscreenFocusCurrentIndexList;
      /// 孩子节点有下一页
      if(currentSingleNode.isNotEmpty){
        return [ _currentFocusIndex, ...currentSingleNode ];
      }
    }
    return [ _currentFocusIndex ];
  }
  return [];
}