We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I just want to indicate that you need to be cautious of the darkmode style order, something like this wouldnt work:
<Text style={tailwind('dark:bg-red-500 bg-white')}>Darkmode Test</Text>
for it to work the none darkmode classes need to be in the front, like this:
<Text style={tailwind('bg-white dark:bg-red-500')}>Darkmode Test</Text>
The text was updated successfully, but these errors were encountered:
That looks like a bug, thanks for reporting.
Sorry, something went wrong.
Same issue with focus and all conditional styles with :
:
Is there any solution / workaround available?
No branches or pull requests
I just want to indicate that you need to be cautious of the darkmode style order, something like this wouldnt work:
for it to work the none darkmode classes need to be in the front, like this:
The text was updated successfully, but these errors were encountered: