Falko Schindler

Results 231 comments of Falko Schindler
trafficstars

I merged the branch into main. This is the diff: https://github.com/zauberzeug/nicegui/compare/426f420a0fa427979797e1e0c275edf0fc771c0d...30010cd6a12142deff62ada34bf511750cc494ed

@sandeep-gh I didn't know Svelte, but it looks interesting. Being able to plug and play the frontend framework would definitely be nice. But I just wonder what would be the...

In https://github.com/zauberzeug/nicegui/commit/ff53a438d97110814283b2fb662d2fe364d452b2 I updated the favicon implementation as follows: - The favicon (on page and `ui.run`) defines the relative local filepath and is now `None` by default. - The `PageBuilder`...

Ah, I forgot supporting URLs. It's now fixed. The favicon path is a bit complicated because: - JustPy prefixes it with `static/`, so we need to take this into account....

The `error()` function could return an HTMLResponse with a custom status code. But besides handy features like tailwind we loose auto-reload. That's why I would rather postpone this issue until...

Oh, this is a mistake in the documentation. `on_page_ready` is (currently) only available as an argument for the page decorator: https://github.com/zauberzeug/nicegui/blob/38053252af34b7aeeaebd84ec762da2de4c8b627/nicegui/page.py#L160 We need to decide if we only fix the...

@hroemer I've taken the liberty to do some review, refactoring and API improvements directly within your code. Let me explain my changes: - I removed the components `QCircularProgressExtended` and `QLinearProgressExtended`....

@hroemer Thanks for your PR! Besides minor cleanup I managed to remove `_QBadge` again. Although there is no `text` property in `jp.QBadge`, we can simply bind against `label`. https://github.com/zauberzeug/nicegui/commit/8ff156b368313ad9b0d025eb38dda66a01a2506c

@me21 I added a new example ["custom_vue_component"](https://github.com/zauberzeug/nicegui/tree/main/examples/custom_vue_component). It shows a rather primitive component that receives two props and emits an event. The python code contains the typical separation between NiceGUI...

Thanks for mentioning `asyncio.wait_for()`, @gsakkis! I've been searching for such a total timeout for quite a while now, but haven't thought of using asyncio to enforce it. This is a...