Sandipan Chowdhury

Results 10 comments of Sandipan Chowdhury

``` [ +45 ms] executing: uname -m [ +15 ms] Exit code 0 from: uname -m [ ] x86_64 [ +245 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping...

``` /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so: error loading plugin: /snap/flutter/145/usr/bin/../../lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by /usr/lib/gcc/x86_64-linux-gnu/11/liblto_plugin.so) ```

How can I install the flutter without snap?

Is there any window.events.loading like there is a window.events.loaded? This would help when the window starting to change its url

How I think we can achieve this: 1. Creating a simple NativeActivity App which uses A small C program to draw a line on the NativeActivity. 2. Finding the way...

Steps to reproduce: 1. get the code at: [https://gist.github.com/bin-san/ede5d876aba43eff290a776915659345](https://gist.github.com/bin-san/ede5d876aba43eff290a776915659345) 2. run the file 3. open webpage localhost:8999 to see ![Screenshot from 2024-06-24 16-33-56](https://github.com/zauberzeug/nicegui/assets/75874218/4fd67399-ac1d-4291-be62-273ad70680e7) 4. Click the floating action button on...

Yes sir. I am trying to write the minimum reproducible code.

```py from nicegui import ui, app @ui.page('/') def index(): app.storage.user['name'] = 'San' def f(v): ui.notify(app.storage.user.get('name')) return v ui.label().bind_text_from(app.storage.user, 'name', backward=f) ui.run(show=False, storage_secret='bin-san-2002') ``` The problem is that the function given...

@falkoschindler Hi. Same problem accessing app.storage.user from an app.websocket ```py from nicegui import ui, app from fastapi import WebSocket from uuid import uuid4 from time import time_ns def uid(): """Generates...