4

我正在尝试在 React Native 中创建一个带有 2 个选项卡(使用react-native-tab-view)的屏幕,其布局如下:

 ------------------------
|   Collapsible Header   |
|------------------------|  
|    Tab A  |  Tab B     |
|------------------------| 
|                        |
|                        |
|        FlatList        |
|         in Tab         |
|         Content        |
|                        |
|                        |
|                        |
|                        |
 ------------------------

我采用的布局是可折叠标题和标签栏的绝对定位,而 FlatList 实际上覆盖了整个屏幕(标题和标签栏都在它的顶部)。为了将可滚动部分放在标签栏之后,我在 FlatList 中添加paddingTop了一个。contentContainerStyle这是问题的根源 - 当在选项卡 A 中滚动,然后移动到选项卡 B 时,由于该填充,将会有一个空白区域。

我创建了一个完整的 Expo 项目来展示这个问题:https ://expo.io/@bartzy/collapsible-tab-view-example 这是 Expo 项目的 Github 存储库:https ://github.com/bartzy/CollapsibleTabViewExample

这是示例应用程序的快速视频,显示切换到选项卡 2 后的空白填充空间: 在此处输入图像描述

我很感激任何关于如何在选项卡之间移动时消除空白空间的想法,同时保持所需的折叠行为。

4

2 回答 2

1

这是一个常见问题,关于如何解决这个问题的例子很少,但最近我发布了一个 react-native-tab-view 的包装器来解决这个问题。

演示

例子

快速开始的例子。

import * as React from 'react';
import { StyleSheet, View, Text, Animated } from 'react-native';
import {
  CollapsibleTabView,
  useCollapsibleScene,
} from 'react-native-collapsible-tab-view';
import { SceneMap } from 'react-native-tab-view';

type Route = {
  key: string;
  title: string;
};

const SomeRoute: React.FC<{ routeKey: string; color: string }> = ({
  routeKey,
  color,
}) => {
  const scrollPropsAndRef = useCollapsibleScene(routeKey);

  return (
    <Animated.ScrollView
      style={{ backgroundColor: color }}
      {...scrollPropsAndRef}
    >
      <View style={styles.content} />
    </Animated.ScrollView>
  );
};

const FirstScene = () => <SomeRoute routeKey="first" color="white" />;
const SecondScene = () => <SomeRoute routeKey="second" color="black" />;

const HEADER_HEIGHT = 250;

const renderHeader = () => (
  <View style={styles.header}>
    <Text style={styles.headerText}>COLLAPSIBLE</Text>
  </View>
);

const renderScene = SceneMap({
  first: FirstScene,
  second: SecondScene,
});

const App: React.FC<object> = () => {
  const [index, setIndex] = React.useState(0);
  const [routes] = React.useState<Route[]>([
    { key: 'first', title: 'First' },
    { key: 'second', title: 'Second' },
  ]);

  const handleIndexChange = (index: number) => {
    setIndex(index);
  };

  return (
    <CollapsibleTabView<Route>
      navigationState={{ index, routes }}
      renderScene={renderScene}
      onIndexChange={handleIndexChange}
      renderHeader={renderHeader} // optional
      headerHeight={HEADER_HEIGHT} // optional, will be computed.
    />
  );
};

export default App;

const styles = StyleSheet.create({
  header: {
    height: HEADER_HEIGHT,
    backgroundColor: '#2196f3',
    justifyContent: 'center',
    alignItems: 'center',
    elevation: 4,
  },
  headerText: {
    color: 'white',
    fontSize: 24,
  },
  content: {
    height: 1500,
  },
});
于 2020-11-19T20:30:16.057 回答
0

您需要保留对平面列表的引用,并为不在焦点的选项卡保留 scolltoOffset。https://gist.github.com/maitham/6e0841800d88bf9c289fc45bbc903b1d。这似乎对我有用。

于 2020-06-06T18:34:42.610 回答