Reflex Radix Components is the official Radix UI integration for the Reflex web framework (Python). Version 0.9.4 provides pre-built, accessible UI primitives (dialog, dropdown, tooltip, etc.) that work seamlessly with Reflex's reactive state model. It follows Radix UI's headless pattern, leaving styling to the developer via Reflex's style props or custom CSS.
pip install reflex-components-radixNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
A minimal app showing a Radix button that increments a counter.
Always pass style props (e.g., color_scheme='indigo') or use className for custom CSS. Alternatively, wrap in rx.box with style.
Use 'import reflex_components_radix as rx_radix' instead of 'from reflex_components import radix'.
Define all handlers as methods in rx.State and use lambda or direct method references (e.g., on_click=State.my_handler).
Run 'pip install reflex-components-radix' and use import reflex_components_radix as rx_radix.
Use 'import reflex_components_radix as rx_radix' and then rx_radix.button(...).
Create a method in your State class and reference it: on_click=State.my_method.
No resource links recorded.