chevron_left

React Native 实践教程

免费
第 3.9 回

教程文档

React Native 实践教程 - 导航器配置五:Modal 公共配置

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

导航器配置五:Modal 公共配置

Modal配置文件

新建src/navigation/options/ModalOption.js文件

import * as React from 'react';
import Ionicons from 'react-native-vector-icons/Ionicons';
import Colors from '../../constants/Colors';
import { Platform } from 'react-native';

// modal页,去掉左侧返回按钮,右侧加上关闭按钮
const ModalOption = navigation => {
  return {
    // 显示header
    headerShown: true,

    // 安卓标题栏居中
    headerTitleAlign: 'center',

    // 不显示默认返回按钮
    headerLeft: () => null,

    // 自定关闭按钮
    head...

课程介绍

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

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

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

目录

适合这样的人

新手