1.0.1 • Published 4 years ago

react-native-shadow-style v1.0.1

Weekly downloads
138
License
MIT
Repository
github
Last release
4 years ago

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
`