gpt4 book ai didi

react-native - react-native-reanimated 中的可折叠 header 与 React Native 中的多个选项卡

转载 作者:行者123 更新时间:2023-12-04 13:39:34 35 4
gpt4 key购买 nike

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

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

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

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

这是示例应用程序的快速视频,显示了切换到 Tab 2 后的空白填充空间:
enter image description here

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

最佳答案

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

例子
来自 quick start 的示例.

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,
},
});

关于react-native - react-native-reanimated 中的可折叠 header 与 React Native 中的多个选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59446635/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com