-
-
Notifications
You must be signed in to change notification settings - Fork 7
Add support for media queries #46
vallemar
started this conversation in
1. Ideas & Discussions
-
I think it would be interesting to add media query support to NativeScript. I don't think as a first iteration all the standardization is needed but the basic uses of width, height and orientation are needed:
@media (width: 360) { } @media (min-width: 35) { } @media (max-width: 50) { } @media (height: 360) { } @media (min-height: 25) { } @media (max-height: 40) { } @media (orientation: landscape) { } @media (orientation: portrait) { }
It would contribute a lot when designing views and I think it would be compatible with tailwind and its responsive logic.
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1
Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
All reactions
-
🎉 1
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment