Falko Schindler

Results 231 comments of Falko Schindler
trafficstars

@gsakkis You're right, the other URL "http://httpbin.org/drip" is even better for testing the total timeout. But even with "https://httpbin.org/delay/3" the normal httpx timeout takes around 1.4s instead of 1.0s, while...

Hi @kleynjan, This is indeed an annoying bug we also noticed in one of our projects. I took the opportunity to further investigate different methods to show and hide a...

Oh and here is another workaround using the map method `invalidateSize`: ```py ui.button('Show', on_click=lambda: (e.set_visibility(True), m.run_map_method('invalidateSize'))) ui.button('Hide', on_click=lambda: e.set_visibility(False)) with ui.element() as e: m = ui.leaflet(center=(51.505, -0.09)).classes('w-96 h-64') e.set_visibility(False) ```

It seems like this issue will be fixed in Leaflet 2.0: https://github.com/Leaflet/Leaflet/issues/9010 So I think we need to sit and wait for its release.

@gotev You're right, we should be careful not to suggest or promise to wrap PyInstaller in all its glory, but to only give a starting point from which our users...

I like the idea of always printing the command! Detecting whether `native=True` is set could be challenging though. Users could make it dependent on some other flag like `native=PRODUCTION`, so...

I just looked into this PR and noticed some remaining points we need to address: - [x] Regarding our idea about checking for `native=True`: The [documentation](https://nicegui.io/documentation/section_configuration_deployment#package_for_installation) recommends using `--windowed` only...

Ok, I added some more documentation to the pack.py script. Let's merge and improve it later.

@NiklasNeugebauer, @JensOgorek, I already tried to reproduce this issue with @denniswittich, but we couldn't get GTK running. Could one of you, please, try to run the code from the [original...

I just reproduced the issue on an Ubuntu machine, but I have no clue why the dialog doesn't open. I thought it might have to do with the button click,...