chevron_left

React Native 实践教程

免费
第 4.6 回

教程文档

React Native 实践教程 - 滚动的 Tab 栏:scrollable-tab-view 的使用

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

滚动的 Tab 栏:scrollable-tab-view 的使用

安装

yarn add clwy-react-native-scrollable-tab-view @react-native-community/viewpager

使用

import React from 'react';
import { StyleSheet, Text } from 'react-native';
import ScrollableTabView, { ScrollableTabBar } from 'clwy-react-native-scrollable-tab-view';
import Colors from '../../constants/Colors';

const HomeScreen = () => {
  return (
    <ScrollableTabView
      style={styles.container}
      initialPage={0}
      renderTabBar={() => <Scrollable...

课程介绍

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

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

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

目录

适合这样的人

新手