Answers for "react native sovrapporre immagini"

0

react native sovrapporre immagini

<View>
    <Image
        source={yourImageUrl}
        resizeMode={'cover'}
        style={{
            width: 300,
            height: 300
        }}
    />

    <View style={{ position: 'absolute', top: 0, left: 0, right: 0, height: 300, alignItems: 'center', justifyContent: 'center' }}>
        <Text>Your overlay text</Text>
    </View>
</View>
Posted by: Guest on April-01-2020

Code answers related to "react native sovrapporre immagini"

Code answers related to "Javascript"

Browse Popular Code Answers by Language