Nikhil Rao
Nikhil Rao
Currently we require the user to specify the base state when defining the app: ```python app = rx.App(state=MyState) ``` However, we also have a requirement that the base state `MyState`...
Currently the guide only shows how to wrap components from `npm`. We should also show how to wrap custom local React components (and add anything to the library to enable...
The new controlled inputs/text areas works great, but throws a warning in the JS console that we should resolve.
Currently you cannot apply styles to the markdown component. We should wrap it in a `pc.box` and apply the styles to the box.
Currently going to a bad route leaves a very confusing error message: "attempted to hard navigate to the same URL". It's not very obvious what this means, we should try...
We can add something like `pc.scroll_to` that does this behavior: https://stackoverflow.com/questions/43441856/how-to-scroll-to-an-element
We should be able to prefix computed vars with an underscore to make them internal computed vars. ```python class State(pc.State): """The app state.""" @pc.var def _now(self): return datetime.now() ```
The state manager is essentially a dictionary mapping between a user token (browser tab) and their state. When using Redis as a state manager (by setting the `redis_url` in the...
Currently the API for `rx.table` is quite verbose. We should explore a way to make a high level API for it. Instead of ``` rx.table.root( rx.table.header( rx.table.row( rx.table.column_header_cell("Full name"), rx.table.column_header_cell("Email"),...
### Discussed in https://github.com/orgs/reflex-dev/discussions/3063 Originally posted by **rodrigosetti** April 10, 2024 I'm organizing a larger reflex project and wanted to place my reflex app in a subpackage, but `rx.Config(app_name="X")` constrains...