fitHeightJs constant

String const fitHeightJs

Implementation

static const fitHeightJs = """
(function() {
 let maxBottom = 0;

  document.body.querySelectorAll('*').forEach(el => {
  const rect = el.getBoundingClientRect();
  maxBottom = Math.max(maxBottom, rect.bottom);
  });

  return [0, maxBottom];
  })();
""";