chevron_left

React Native 实践教程

免费
第 4.11 回

教程文档

React Native 实践教程 - 好看的表格:react-native-tableview-simple 的使用

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

好看的表格:react-native-tableview-simple 的使用

安装

yarn add react-native-tableview-simple

使用

import * as React from 'react';
import { ScrollView, StyleSheet } from 'react-native';
import { Cell, Section, TableView } from 'react-native-tableview-simple';
import Colors from '../../constants/Colors';

const HomeScreen = ({ navigation }) => {
  return (
    <ScrollView style={styles.container}>
      <TableView appearance={'light'}>
        <Section header="浏览">
          <Cell
            title="W...

课程介绍

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

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

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

目录

适合这样的人

新手