Registry / devops / reflex-chakra

reflex-chakra

JSON →
library0.8.2.post1pypypiunverified

Reflex Chakra provides Chakra UI components for the Reflex web framework, enabling developers to build reactive web apps with a rich set of pre-styled components. Current version is 0.8.2.post1, requires Python >=3.10, and follows Reflex's release cadence.

pip install reflex-chakra
INSTALL
IMPORT
SIG · REFLEX-CHAKRA
R
reflex-chakra
devopspythonv0.8.2.post1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

chakra
from reflex_chakra import chakra
from reflex_chakra import chakra

Minimal Reflex app using Chakra components.

import reflex as rx from reflex_chakra import chakra class State(rx.State): pass def index() -> rx.Component: return chakra.vstack( chakra.heading("Hello Chakra!", size="xl"), chakra.button("Click Me", color_scheme="blue"), ) app = rx.App() app.add_page(index, route="/") app.compile()
Debug
Known issues
deprecatedSome Chakra components have been renamed in Reflex 0.8+ (e.g., `chakra.box` to `chakra.container`). Check the migration guide.
fix
Refer to the official Reflex Chakra changelog for mapping old to new component names.
affects: >=0.8.0
gotchaComponent color schemes (e.g., 'blue') must match Chakra theme tokens; invalid tokens silently fall back to default.
fix
Use only supported color scheme tokens: gray, red, orange, yellow, green, teal, blue, cyan, purple, pink.
affects: all
gotchaReflex Chakra does not support all Chakra UI props; some props like `variant` may not work as expected.
fix
Consult the official Reflex Chakra component docs for supported props; fall back to custom CSS with `style=` if needed.
affects: all
Upgrade
Version history
0.8.2.post1latest on PyPI · released Jul 31, 2025
Audit
Dependencies
reflexrequiredCore framework required
Agent activity
4 hits · last 30 days
node
4
Resources

No resource links recorded.

reflex-chakra — pip install reflex-chakra · libregistry