2016-04-29 13 views

答えて

3
<Image source={imageSource} style={{position: "absolute", bottom: 0, right: 0}}/> 
4

あなたはこれを達成するためにjustifyContent: 'flex-end'を使用することができます。それが動作

const withWatermark = (asset, logo) => (
    <Image style={{ width: 200, height: 200, justifyContent: 'flex-end' }} source={asset}> 
    <Image style={{ width: 20, height: 20, alignSelf: 'flex-end' }} source={logo} /> 
    </Image> 
); 
+0

おかげで.. :) –