DEV Community

Cover image for OsmiCSX Release v0.5.0
DeVoresyah ArEst
DeVoresyah ArEst

Posted on

OsmiCSX Release v0.5.0

In this update, we make more simplify for the styling method in React Native. We bring styling in web sensation to React Native.

Previously in OsmiCSX v0.4.0 we still use multiple arguments for multiple namespaces. But now, we only need one argument. Here's the difference

OsmiCSX v0.4.0

<View style={apply("flex", "items-center", "justify-center")} />
Enter fullscreen mode Exit fullscreen mode

OsmiCSX v0.5.0

<View style={apply("flex items-center justify-center")} />
Enter fullscreen mode Exit fullscreen mode

And also, we added Responsive Font Size. It means the font size will automatically scale depends on the device resolution. For more information please check our Release Notes

GitHub => github.com/OsmiCSX/osmicsx
Documentation => osmicsx.github.io/docs

Top comments (0)