We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ui.log
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As shown in the following example, the log view stops scrolling to the bottom when multiple lines are pushed at once.
from nicegui import ui import time log = ui.log().classes('w-full h-30vh') def write_log(): log.push(f'Log entry at {time.strftime("%H:%M:%S")}') log.push(f'Log entry at {time.strftime("%H:%M:%S")}') log.push(f'Log entry at {time.strftime("%H:%M:%S")}') log.push(f'Log entry at {time.strftime("%H:%M:%S")}') ui.timer(0.5, write_log, active=True) ui.run()
Originally posted by @pandabearcodes in #3909 (reply in thread)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As shown in the following example, the log view stops scrolling to the bottom when multiple lines are pushed at once.
Originally posted by @pandabearcodes in #3909 (reply in thread)
The text was updated successfully, but these errors were encountered: