SeoulSKY
SeoulSKY
SSolara
Created by avedik_. on 3/14/2025 in #questions-issues
Load environmental variables
What you can do inside your main.py to hide the banner is the following:
import solara.server.settings

solara.server.settings.theme.show_banner = False
import solara.server.settings

solara.server.settings.theme.show_banner = False
6 replies
SSolara
Created by avedik_. on 3/14/2025 in #questions-issues
Load environmental variables
6 replies
SSolara
Created by avedik_. on 3/14/2025 in #questions-issues
Load environmental variables
I read the source code of the solara command, and although they take env-file as an argument, it doesn't really do anything. The variable env_file is unused
6 replies
SSolara
Created by SeoulSKY on 1/30/2025 in #questions-issues
How to add an event listener to reacton.ipyvuetify.FileInput?
I tried the FileDrop component from Solara, and I found its features are limited (e.g. styling and click to upload). So, I tried the rv.FileInput(), which has more features, but it wasn't implemented properly in ipyvuetify, and that was why it didn't give any value to the listener. As a result, I created my custom FileDrop with Vue, which works perfectly (I'm glad that Solara supports creating Vue components!) Thank you for the help anyway!
4 replies
SSolara
Created by SeoulSKY on 1/30/2025 in #questions-issues
How to add an event listener to reacton.ipyvuetify.FileInput?
I realized this is a way to add a listener
rv.use_event(uploader, "change", lambda a, b, c: print(a, b, c)
rv.use_event(uploader, "change", lambda a, b, c: print(a, b, c)
Where a is the uploader object, b is “change”, and c is {} However, I still couldn't figure out how to get the file object from the event listener.
4 replies