1.0.2 • Published 2 years ago

@blackplate/react-native-shadow-adapter v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

RN Shadow Adapter

Inspired by react-native-shadow-generator, this Library provides a simple way to keep react native shadows the same on both iOS and Android.

Usage

import {StyleSheet} from 'react-native';
import shadow from '@blackplate/shadow';

const styles = StyleSheet.create({
  container: {
    backgroundColor: 'white',
    ...shadow(16)
  }
})