walkUpdateAndDraw method

Future walkUpdateAndDraw(
  1. NodeContext context
)

Implementation

Future walkUpdateAndDraw(ui.NodeContext context) async {
  refreshWaitEvent();
  await update(context);
  await draw(context);
  var children = getCloneChildren();
  for (var child in children) {
    await child.walkUpdateAndDraw(context);
  }
  await lateUpdate();
  await lateDraw(context);
}