buildComponentWithChildren method

Widget buildComponentWithChildren(
  1. BuildContext context
)

Implementation

Widget buildComponentWithChildren(BuildContext context) {
  return Stack(
    children: [
      Positioned.fill(
        left: cachedLeft,
        child: Container(
          color: backgroundColor,
        ),
      ),
      NestedListWidget(
        indentPadding: indentPadding,
        child: buildComponent(context, withBackgroundColor: false),
        children: editorState.renderer.buildList(
          context,
          widget.node.children,
        ),
      ),
    ],
  );
}