Utilizing Tailwind (Nativewind) with Solito in expo React Native, I have a styled component with children. While the style is correctly applied on the web version, only certain styles work in the native app. The `gap` and `text-center` classes do not work, although the background color does.
The code snippet looks something like this:
<Custom className="gap-5 bg-orange-100 text-center">
<StyledText>TEST</StyledText>
<StyledTitleBig>Login Screen</StyledTitleBig>
<...>
</Custom>
This is how the android native version appears:
https://i.sstatic.net/u2C5F.jpg
And here is how the web version should look: