We style our app with tailwind-css for react-native
Usage:
import tw from '@core/styles/tailwind';
const PlantScanner = () => {
return (
<View>
<Text style={tw`bg-very-dark-green`}>PlantScanner</Text>
</View>
);
};
If you want adjust config, make changes in tailwind.config.js
.