-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to set MUI breakpoint values #1856
Comments
WA inline var GridProps.xs: Any?
get() = asDynamic().xs
set(value) = asDynamic().xs = value |
Get the following error when I try the above
This works though
|
I have these extensions now for GridProps
|
Expected extensions: inline var GridProps.justifyContent: JustifyContent
get() = asDynamic().justifyContent
set(value) {
asDynamic().justifyContent = value
}
inline var GridProps.alignItems: AlignItems
get() = asDynamic().alignItems
set(value) {
asDynamic().alignItems = value |
Is there a plan to include these extensions in the library? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I am trying to convert the following code:
to Kotlin using
kotlin-mui
.The issue I am having is that I don't know how to set the value for the
xs
breakpoint.The text was updated successfully, but these errors were encountered: