我如何在React Native中实际使用Image.capInsets?

时间:2015-07-07 11:01:19

标签: image parsing react-native

RN文件说明了这一点:screenie

但我真的不明白capInsets {top: number, left: number, bottom: number, right: number}应该是什么意思。它是否期望一个对象,其键是顶部,左侧,底部和右侧?

1 个答案:

答案 0 :(得分:2)

UIExplorer demo中有一个用法示例:

<Image
    source={require('image!story-background')}
    style={styles.storyBackground}
    capInsets={{left: 15, right: 15, bottom: 15, top: 15}}
    />