react-native-shadow-style

Use this function to create shadows for Android and iOS


Keywords
react-native, shadow, elevation, style
License
MIT
Install
npm install react-native-shadow-style@1.0.0

Documentation

react-native-shadow-style

Use this function to create shadows for Android and iOS

yarn add react-native-shadow-style

How to use

import React from 'react'
import { View } from 'react-native'
import shadowStyle from 'react-native-shadow-style'

const App = () => (
  <View
    style={{
      // Others styles
      ...shadowStyle(5)
    }}
  />
)

Use with styled components

import styled from 'styled-components/native'
import shadowStyle from 'react-native-shadow-style'

export const Container = styled.View.attrs({
  ...shadowGenerator(5),
})`
  // Others styles
`