879479119 / react-native-shadow

A SVG shadow component powered with react-native-svg,which can provide shadow on Android like iOS ^_^
MIT License
610 stars 82 forks source link

How to set to automatically full width #9

Open safeimuslim opened 7 years ago

safeimuslim commented 7 years ago

Hi, How to set to automatically full width

ariona commented 7 years ago

Maybe you can use Dimensions for getting the device width:

import { Dimensions } from 'react-native'

const {width, height} = Dimensions.get('window')

/* use on style */
<View style={{width}}></View>