chevron_left

React Native 实践教程

免费
第 4.7 回

教程文档

React Native 实践教程 - 分享功能:react-native-share 的使用

2023年11月23日
React Native 实践教程

分享功能:react-native-share 的使用

安装

yarn add react-native-share

iOS 下

npx pod-install

Android 下

当前版本无需其他处理

使用

import * as React from 'react';
import { View, StyleSheet, TouchableOpacity } from 'react-native';
import EvilIcons from 'react-native-vector-icons/EvilIcons';
import Share from 'react-native-share';

const HomeScreen = () => {
  const shareOptions = {
    title: '分享的标题',
    message: '分享的消息',
    url: 'https://clwy.cn',
    subject: `来自「长乐未央」的分享`,
  };...

课程介绍

「长乐未央」出品的 React Native 开发教程。

课程中使用 React Native 0.64.2 + React Navigation 6.x「新版」

使用 JavaScript 的 React 框架,来创建 iOS 和 Android 原生应用。

目录

适合这样的人

新手