chevron_left

React Native 实践教程

免费
React Native 实践教程

抽屉 Drawer

安装

yarn add @react-navigation/drawer react-native-gesture-handler react-native-reanimated

index.js最顶部

import 'react-native-gesture-handler';

iOS

cd ios && pod install && cd ..

使用

import * as React from 'react';
import { View, Text } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createDrawerNavigator } from '@react-navigation/drawer';

function Home() {
  return (
   ...

课程介绍

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

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

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

目录

适合这样的人

新手