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")} />
OsmiCSX v0.5.0
<View style={apply("flex items-center justify-center")} />
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)