Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SrBrahma/react-native-shadow-2
Cross-platform shadow for React Native. Supports Android, iOS, Web, and Expo
https://github.com/SrBrahma/react-native-shadow-2
android blur borders cross-platform expo improved ios javascript js mobile new radiuses react react-native shadow ts typescript web
Last synced: 21 days ago
JSON representation
Cross-platform shadow for React Native. Supports Android, iOS, Web, and Expo
- Host: GitHub
- URL: https://github.com/SrBrahma/react-native-shadow-2
- Owner: SrBrahma
- License: mit
- Created: 2021-02-14T20:43:38.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-25T17:43:04.000Z (over 1 year ago)
- Last Synced: 2024-05-10T01:03:30.207Z (7 months ago)
- Topics: android, blur, borders, cross-platform, expo, improved, ios, javascript, js, mobile, new, radiuses, react, react-native, shadow, ts, typescript, web
- Language: TypeScript
- Homepage:
- Size: 2.22 MB
- Stars: 607
- Watchers: 4
- Forks: 50
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-react-native - react-native-shadow-2 - Cross-platform shadow for React Native. Improved version of the abandoned react-native-shadow package. ![](https://img.shields.io/github/stars/SrBrahma/react-native-shadow-2.svg?style=social&label=Star) (Components / Styling)
README
> [!IMPORTANT]
> The new React Native **0.76**, released on **Oct 23, 2024**, [finally supports a cross-platform shadow](https://reactnative.dev/blog/2024/10/23/release-0.76-new-architecture#box-shadow-and-filter-style-props)!
>
> This new feature should be preferred over this library.
>
> **I can only wholeheartedly appreciate everyone's support and kindness over the past almost 4 years and celebrate having reached 35k weekly and 2M total downloads** 🤗
>
> For professional inquiries regarding senior-level expertise in TypeScript, React, and React Native, contact me at [email protected].# react-native-shadow-2
[![npm](https://img.shields.io/npm/v/react-native-shadow-2)](https://www.npmjs.com/package/react-native-shadow-2)
[![TypeScript](https://badgen.net/npm/types/env-var)](http://www.typescriptlang.org/)
[![npm](https://img.shields.io/npm/dt/react-native-shadow-2)](https://www.npmjs.com/package/react-native-shadow-2)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)[react-native-shadow](https://github.com/879479119/react-native-shadow) is dead for years. This is an improved version with more functionalities, Typescript support and written from scratch. It's not required to define its size: the shadow is smartly applied on the first render and then precisely reapplied on the following ones.
It solves the old React Native issue of not having the same shadow appearence and usage for Android, iOS and Web.
The [ethercreative/react-native-shadow-generator](https://ethercreative.github.io/react-native-shadow-generator) website won't give you very similar results between the two platforms, for the reasons I described [here](https://github.com/ethercreative/react-native-shadow-generator/issues/2#issuecomment-738130722). It's also not as customizable as this library.
Compatible with Android, iOS and Web. **And Expo!**
Supports [RTL](https://reactnative.dev/blog/2016/08/19/right-to-left-support-for-react-native-apps).
## [🍟 Demo - Expo Snack Sandbox](https://snack.expo.io/@srbrahma/react-native-shadow-2-sandbox)
> Give this library a quick try!## [📰 v7 Changelog - 2022-08-08](./CHANGELOG.md)
### [❗ Read the FAQ below!](#️-faq)
## 💿 Installation
#### 1. First install [react-native-svg](https://github.com/react-native-svg/react-native-svg#installation).
> The latest `react-native-svg` version is recommended, including if using Expo.
#### 2. Then install react-native-shadow-2:
```bash
npm i react-native-shadow-2
# or
yarn add react-native-shadow-2
```## 📖 Usage
```tsx
import { Shadow } from 'react-native-shadow-2';🙂
```
![Example 1](./resources/README/react-native-shadow-2-ex-1.png)
```tsx
🤯
```
![Example 2](./resources/README/react-native-shadow-2-ex-2.png)
## Properties
#### All properties are optional.
| Property | Description | Type | Default
| --- | --- | --- | ---
| **startColor** | The initial gradient color of the shadow. | `string` | `'#00000020'`
| **endColor** | The final gradient color of the shadow. | `string` | Transparent startColor. [Explanation](https://github.com/SrBrahma/react-native-shadow-2/issues/31#issuecomment-985578972).
| **distance** | How far the shadow goes. | `number` | `10`
| **offset** | Moves the shadow. Negative `x` moves it left/start, negative `y` moves it up.
Accepts `'x%'` values.
Defining this will default `paintInside` to **true**, as it's the usual desired behaviour. | `[x: string \| number, y: string \| number]` | `[0, 0]`
| **paintInside** | Apply the shadow below/inside the content. `startColor` is used as fill color, without a gradient.
Useful when using `offset` or if your child has some transparency. | `boolean` | `false`, but `true` if `offset` is defined
| **sides** | The sides that will have their shadows drawn. Doesn't include corners. Undefined sides fallbacks to **true**. [Explanation](https://github.com/SrBrahma/react-native-shadow-2/issues/76#issuecomment-1563276588). | `Record<'start' \| 'end' \| 'top' \| 'bottom', boolean>` | `undefined`
| **corners** | The corners that will have their shadows drawn. Undefined corners fallbacks to **true**. [Explanation](https://github.com/SrBrahma/react-native-shadow-2/issues/76#issuecomment-1563276588). | `Record<'topStart' \| 'topEnd' \| 'bottomStart' \| 'bottomEnd', boolean>` | `undefined`
| **style** | The style of the View that wraps your children. Read the [Notes](https://github.com/SrBrahma/react-native-shadow-2/edit/main/README.md#notes) below. | `StyleProp` | `undefined`
| **containerStyle** | The style of the View that wraps the Shadow and your children. Useful for margins. | `StyleProp` | `undefined`
| **stretch** | Make your children ocuppy all available horizontal space. [Explanation](https://github.com/SrBrahma/react-native-shadow-2/issues/7#issuecomment-899784537). | `boolean` | `false`
| **safeRender** | Won't use the relative sizing and positioning on the 1st render but on the following renders with the exact onLayout sizes. Useful if dealing with radii greater than the sides sizes (like a circle) to avoid visual artifacts on the 1st render.
If `true`, the Shadow won't appear on the 1st render. | `boolean` | `false`
| **disabled** | Disables the Shadow. Useful for easily reusing components as sometimes shadows are not desired.
`containerStyle` and `style` are still applied. | `boolean` | `false`## Notes
* If the Shadow has a single child, it will get the `width`, `height` and all of the `borderRadius` properties from the children's `style` property, if defined.
* You may also define those properties in the Shadow's `style`. The defined properties here will have priority over the ones defined in the child's `style`.
* If the `width` **and** `height` are defined in any of those, there will be only a single render, as the first automatic sizing won't happen, only the precise render.
* You can use either the `'borderTopLeftRadius'` or `'borderTopStartRadius'` and their variations to define the corners radii, although I recommend the latter as it's the RTL standard.
* [Having a radius greater than its side will mess the shadow if the sizes aren't defined](https://github.com/SrBrahma/react-native-shadow-2/issues/15). **You can use the `safeRender` property** to only show the shadow on the 2nd render and beyond, when we have the exact component size and the radii are properly limited.
* [Radii greater than 2000 (Tailwind's `rounded-full` is 9999) may crash Android](https://github.com/SrBrahma/react-native-shadow-2/issues/46).
## ⁉️ FAQ
* #### How to set the Shadow opacity?
The opacity is set directly in the `startColor` and `endColor` properties, in the alpha channel. E.g.: `'#0001'` is an almost transparent black. You may also use `'#rrggbbaa'`, `'rgba()'`, `'hsla()'` etc. [All patterns in this link, but not int colors, are accepted](https://reactnative.dev/docs/colors).
* #### My component is no longer using the available parent width after applying the Shadow! What to do?
Use the `stretch` property or `style={{alignSelf: 'stretch'}}` in your Shadow component. [Explanation](https://github.com/SrBrahma/react-native-shadow-2/issues/7#issuecomment-899764882)!
* #### I want a preset for my Shadows!
It's exported the `ShadowProps` type, the props of the Shadow component. You may do the following:
```tsx
const ShadowPresets = {
button: {
offset: [0, 1], distance: 1, startColor: '#0003',
} as ShadowProps,
};
```* #### The `offset` and `size` properties are throwing Typescript errors!
Upgrade your Typescript to at least 4.0.0! Those two properties use [**labeled tuples**](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-0.html#labeled-tuple-elements). If you don't use Typescript, this won't happen.
## 📰 Popularly seen on
* ### [LogRocket - Applying box shadows in React Native](https://blog.logrocket.com/applying-box-shadows-in-react-native/)
* ### [V. Petrachin - Top 10 Libraries You Should Know for React Native in 2022](https://viniciuspetrachin.medium.com/top-10-libraries-you-should-know-for-react-native-d435e5209c96)