Falko Schindler
Falko Schindler
Code for testing all our storages: ```py @ui.page('/') async def index(): if 'time' not in app.storage.browser: app.storage.browser['time'] = time.time() ui.label(f'{app.storage.browser["time"]=}') if 'time' not in app.storage.client: app.storage.client['time'] = time.time() ui.label(f'{app.storage.client["time"]=}') if...
Ah, thanks for the clarification. I was a bit confused because I thought we could mimic the isort behavior with ruff (or vice versa). But I [already noticed](https://github.com/zauberzeug/nicegui/pull/2619#pullrequestreview-1901167329) that this...
@mbrulatout There seems to be only one last open issue: When re-ordering some imports and saving without auto-formatting, I'd expect a git commit to fail or at least to output...
Yes, once we started to get a hang of pre-commit, we added some more checks we're already using in other projects. In retrospect I should have created a pull request...
@rodja On my Apple M1 Max it takes about 1-2 minutes to see a significant growth. Did you wait that long? Maybe it depends on how quickly the CPU can...
I just reproduced the problem with Chrome Version 133.0.6943.99 (Official Build) (arm64) on macOS 14.6.1: After around 2-3 minutes RAM usage started to grow until it reached around 3GB after...
Here is a minimal reproduction: ```py with ui.tab_panels(value='1') as tabs: with ui.tab_panel('1'): ui.label('Tab 1') ui.button('Go to 2', on_click=lambda: tabs.set_value('2')).tooltip('Tooltip') with ui.tab_panel('2'): ui.label('Tab 2') ui.button('Back to 1', on_click=lambda: tabs.set_value('1')) ``` First...
Awesome, @python-and-fiction! To conclude: - NiceGUI behaves exactly like pure Quasar apps. But it enables "keep-alive" by default to avoid other problems with dynamic elements (see #488 and #1017). -...
I think I figured it out: My reproduction in plain Quasar was incorrect. NiceGUI uses the `keep-alive` prop by default. If we add it in my Quasar example, the tooltip...
@rodja > I like the API of `ui.icon(icon.HOME.outlined)` much better than `icon.HOME_OUTLINED`. Me too. > At least for some of these, there is another icon definition with the same name...