fitWidthJs constant
String
const fitWidthJs
Implementation
static const fitWidthJs = """
(function() {
let maxRight = 0;
document.body.querySelectorAll('*').forEach(el => {
const rect = el.getBoundingClientRect();
maxRight = Math.max(maxRight, rect.right);
});
return [maxRight, 0];
})();
""";