renderChildrenView method

dynamic renderChildrenView()

Implementation

renderChildrenView() {
  Map childData = getChildren(children);
  if (childData['mAbsolute'].length == 0) {
    if (childData['mTree'].length > 0) {
      return renderChildreTree(childData['mTree']);
    } else {
      return renderEmpty();
    }
  } else {
    return renderStack([
      renderContainer(renderChildreTree(childData['mTree'])),
      ...(getPositionZindex(childData['mAbsolute'])
          .map((e) => renderAbsolute(e))
          .toList()),
    ]);
  }
}