react-native-popover icon indicating copy to clipboard operation
react-native-popover copied to clipboard

Warning RCTView has a Shadow,set backgroud color to fix!

Open falltodis opened this issue 8 years ago • 1 comments

image

I got a Warning like this

falltodis avatar Aug 23 '16 08:08 falltodis

In the meantime you can disable the shadow props by passing the popoverStyle prop:

<Popover
  popoverStyle={{
    shadowColor: null,
    shadowOffset: null,
    shadowOpacity: null,
    shadowRadius: null,
  }}
  ...
/>

ddgromit avatar Jan 09 '17 23:01 ddgromit