You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
void main() {
for (var i = 0; i < 111; i++) {
print('hello ${i + 1}');
}
}
If I bump that 111 to 112 (or higher), then what I see is the output being generated, and then all of it disappears at the end.
I can still select the text out of the output and paste it somewhere else so I can actually see it. So, this suggest this is merely a UI issue, somehow when the output gets too long, something changes the font color to be that of the background (!), which is very inconvenient to say the least!
The text was updated successfully, but these errors were encountered:
I've heard from others that this is repeatable across platforms/browsers. Strange it doesn't get priority!!
Strangely dartpad can now produce a bit more of output before causing all output to disappear. E.g. previously, in the sample code, "i < 86" would cause the bug (but not < 85), currently one has to try "< 112" to see the bug.
This should reliably reproduce it:
void main() {
for (var i = 0; i < 200; i++) {
print('hello ${i + 1}');
}
}
I'm using the latest chrome on a chromebook.
If I run this code, I see the output:
If I bump that 111 to 112 (or higher), then what I see is the output being generated, and then all of it disappears at the end.
I can still select the text out of the output and paste it somewhere else so I can actually see it. So, this suggest this is merely a UI issue, somehow when the output gets too long, something changes the font color to be that of the background (!), which is very inconvenient to say the least!
The text was updated successfully, but these errors were encountered: