如何在 react-native - iOS、Android 中为视图创建插入阴影?

Dha*_*lia 5 shadow react-native

有没有办法在 react native 中为视图创建插入阴影?

Bal*_*ian 1

试试这个:

const styles = StyleSheet.create({
containerStyle: {
  borderWidth: 1,
  borderRadius: 2,
  borderColor: '#ddd',
  borderBottomWidth: 0,
  shadowColor: '#000',
  shadowOffset: { width: 0, height: 2 },
  shadowOpacity: 0.8,
  shadowRadius: 2,
  elevation: 1,
  marginLeft: 5,
  marginRight: 5,
  marginTop: 10,
}
})
Run Code Online (Sandbox Code Playgroud)