标签: react-native
我在标题中加上“有什么不同”,这意味着它们是如何相似以及它们是如何不同的。基本上,style道具如何在View上工作?
style
View
有些钥匙可以放入款式或道具中。例如,<View shadowRadius={3}> vs <View style={{shadowRadius:3}}>。这种选择会影响什么吗?如果没有,那有什么意义呢?
<View shadowRadius={3}>
<View style={{shadowRadius:3}}>