modal from react-native not work after setup native-wind Minimal reproducation ```ts import "./global.css"; import { Text, View, Modal } from "react-native"; export default function App() { return ( <> <View className="flex-1 items-center justify-center bg-amber-200 border m-3"> <Modal visible={true} transparent={true}> <View className="flex-1 items-center justify-center bg-amber-200 border m-3"> <Text className="text-blue-500 text-center">Hello</Text> </View> </Modal> </View> </> ); } ``` <img width="2113" height="1004" alt="Image" src="https://github.com/user-attachments/assets/2cae25fd-3d6f-4a59-91fb-6ff4308bd9f7" />