DEV Community

Discussion on: Setting up react Native + Expo + Tailwind + Gluestack-ui v2

Collapse
 
shahbaazx786 profile image
Shaik Shahbaaz Alam • Edited

Note: Shadow, drop-shadow still doesn't work via nativewind in react native, instead you can use elevation property to set the box shadow.

Ex:

<View className="w-full h-auto bg-white rounded-lg px-4 py-6 space-y-6" 
     style={{ elevation: 4 }} >
</View

Enter fullscreen mode Exit fullscreen mode