879479119 / react-native-shadow

A SVG shadow component powered with react-native-svg,which can provide shadow on Android like iOS ^_^

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to set to automatically full width

safeimuslim opened this issue · comments

Hi, How to set to automatically full width

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>