23 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
3
votes
2
answers
110
views
redirect() method is failing
I am running a reflex-based application that is intended to start at one page, then redirect to another using the
redirect() method.
The code to do this is below:
import reflex as rx
class State(rx....
1
vote
1
answer
113
views
How to asynchronously push state from backend to frontend
I'm trying to build a simple app using Reflex.
My use case is different from most of the examples shown in the docs.
I need to constantly receive data from a UDP socket, parse the contents and then ...
0
votes
0
answers
138
views
Prevent Reflex (Using Alembic) from generating migrations of existing tables in the database
I am using Reflex with Alembic to manage migrations.
My problem is that when I run reflex db makemigrations, Alembic includes all the tables that already exist in the database, even if they are not ...
0
votes
1
answer
80
views
Access states as plain Python value for serialization
I am using the Python reflex package to build a frontend (https://github.com/reflex-dev/reflex).
I am trying to serialize the state values on a button click, which does not seem to work as expected. ...
2
votes
1
answer
618
views
Python Reflex WebSockets integration
I'm very interested in Reflex, a pure python framework that compiles into JavaScript (React & Chakra.) What I cannot ascertain from docs is whether Reflex currently supports WebSockets?
The ...
0
votes
1
answer
320
views
Using Python Reflex data_table component, how can I change the color of the table headings to blue? using rx.heading does not work
given the provided python reflex code, how can I change the color of the table headings to blue? using rx.heading does not work. I also tried: heading_style={"color": "blue"} with ...
0
votes
1
answer
451
views
python reflex input problema
I just discovered the Python reflex module, I looked at the examples on the site and the videos on youtubed, but I could not make a counter that increases by the amount of a value we receive from the ...
-2
votes
2
answers
842
views
Image not showing using Reflex framework
I am trying to display an image using the Python web framework Reflex, and the image is not showing, it's just a question mark where the image is supposed to be.
I have my code just as the ...
0
votes
0
answers
446
views
Dockerfile failing for Reflex app when exporting for Python Reflex app
I am trying to containerize my Reflex app (python) using Docker
Requirements.txt
reflex==0.4.9
<INTERNAL_PACKAGE_NAME> @ git+https://<GITHUB_TOKEN>:[email protected]/<...
1
vote
0
answers
100
views
How to use mediaquery or responsiveness in python reflex?
The official documentation isn’t talking anything at all about CSS mediaquery.
particularly when I would like to place 2 divs and 1 image in single row (rx.hstack) in larger screen and want to place ...
1
vote
0
answers
458
views
Add a dropdown menu in a table with Reflex Python
I'm trying to add a dropdown menu to each row in a table with the use of reflex https://reflex.dev/. The table is build in a state and buttons generally in definitions. This is an example that can be ...
2
votes
1
answer
827
views
Python Reflex (Pynecone) - data_table with checkbox in one column
I am trying to build a data table that includes a checkbox in the first column using python reflex to build web app front end interface.
This is an example table obtained with:
import reflex as rx
...
0
votes
2
answers
973
views
How to use on_key_down event in reflex Library to Execute Function on Enter Key Press
I'm working on a web application using the reflex library, and I'm trying to implement a feature where a function is executed when the user presses the Enter key in an input field. Specifically, I ...
2
votes
0
answers
68
views
How to remove a component using Pynecone
I am trying to remove a parent hstack when a button is pressed. Looked in the Docs and everywhere but couldn't find anything useful.
From the picture above, when the 'x' button is pressed it should ...
1
vote
2
answers
106
views
How to import a class in pynecone?
I'm trying to import a class in another python class in my pynecone project. It's giving me error.
import Constants ---> Giving error
ModuleNotFoundError: No module named 'Constants'
Edit: Folder ...