import {ActivityIndicator, Text, View} from 'react-native'; import public_css from '../../source/css/public_css'; import React from 'react'; // 列表分页加载尾部组件 //参数: 0: 无数据 1:加载中 2:上拉加载 export const Footer = (footType) => { if (footType === 0) { return ( 没有更多数据了 ); } else if (footType === 1) { return ( 正在加载... ); } else if (footType === 2) { return ( 上拉加载 ); } };