chevron_left

React Native 实践教程

免费
第 3.8 回

教程文档

React Native 实践教程 - 导航器配置四:Card 公共配置

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

导航器配置四:Card 公共配置

Stack公共基础配置

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

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

//  Card Stack 配置
const CardOption = (route, navigation) => ({
  // 标题的样式
  headerTitleStyle: {
    fontWeight: '400',
    color: Colors.headerTitle,
  },

  // 标题组件的颜色(自带返回箭头)
  headerTintColor: Colors.primary,

  // 安卓标题栏居中
  hea...

课程介绍

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

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

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

目录

适合这样的人

新手