Masen Furer

Results 131 comments of Masen Furer

There is no path to providing this functionality in the current roadmap for reflex. * too slow * client-side code unable to interact with the backend

Will work on this generalizing this functionality in #1122

`on_view` should be fairly simple to implement using the [Intersection Observer API](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API), which is now supported in all major browsers. @advo-kat I created a separate issue for your request, you...

This appears to be working. @ilyoungkim if you're continuing to have problems, can you open a new issue and post code that reproduces the problem?

The frontend must be able to reach the backend via websocket, or no interactivity can occur. Ensure that * backend is running * `api_url` is set to a public IP...

The website and docs were recently redesigned in the rebrand as Reflex, just wondering @Aarize29 if you might still be able to submit a patch for this.

Seems fixed via #553 unless there are other areas that are unaddressed. ```python rx.icon(tag="RePeaT"), ``` is rendering correctly

Tried this with `reflex == 0.2.0` and got the following traceback, after running `bun run dev` myself ```console TypeError: Cannot read properties of undefined (reading 'create') at /Users/masen/code/pynecone-io/repro-419/.web/node_modules/@mui/material/node/InputLabel/InputLabel.js:77:33 at transformedStyleArg...

and the line of code where `create` is coming from ```javascript !ownerState.disableAnimation && { transition: theme.transitions.create(['color', 'transform', 'max-width'], { duration: theme.transitions.duration.shorter, easing: theme.transitions.easing.easeOut }) ``` so it looks like something...

> Its a missing dependency issue Thanks for the pointer! 🤩 Full, working example for reflex 0.2.8 ```python from typing import Any import reflex as rx class MaterialUIComponent(rx.Component): library =...