“React Native Share Image” Kod odpowiedzi

OnPress Image React Native

//use Touchable Opacity
<TouchableOpacity onPress={()=> alert('image clicked)}>
          <Image source={require('./sampleimage.png')} style = {styles.ImageClass} />
        </TouchableOpacity>
Tame Tarantula

React Native Share Image

import {
     Share
} from 'react-native';
 let shareImage = {
                title: caption,//string
                message: message,//string
                url:imageUrl,// eg.'http://img.gemejo.com/product/8c/099/cf53b3a6008136ef0882197d5f5.jpg',

            };
            Share.open(shareImage).catch(err => console.log(err));
Brave Bug

Odpowiedzi podobne do “React Native Share Image”

Pytania podobne do “React Native Share Image”

Więcej pokrewnych odpowiedzi na “React Native Share Image” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu