Reduce the number of usage of child<Column> for the sake of better performance.
child<>() calls are expensive because internally every time the list of children is determined. In case there are multiple such calls in a loop it's better to get the list of children first and then to access the elements via at() or to use range based loops.