I am using the below code but there's no effect of tailwind classes in the app. Any help will be appreaciable.
import React from 'react';
import {Text, View } from 'react-native';
import {useTailwind} from 'tailwind-rn';
export default function App() {
const tailwind = useTailwind();
return (
<View style={tailwind("flex-1 justify-center items-center")}>
<Text>Welcome to React-Native!</Text>
</View>
);
}
