我试图在React Native中创建一个带有2个标签的屏幕(使用react-native-tab-view
),并具有以下布局:
------------------------
| Collapsible Header |
|------------------------|
| Tab A | Tab B |
|------------------------|
| |
| |
| FlatList |
| in Tab |
| Content |
| |
| |
| |
| |
------------------------
我想要的布局是可折叠标题和选项卡栏的绝对定位,而FlatList实际上覆盖了整个屏幕(标题和选项卡栏都位于其顶部)。为了将可滚动部分放在选项卡栏之后,我在FlatList的paddingTop
中添加了contentContainerStyle
。这是问题的根源-在Tab A中滚动,然后移至Tab B时,由于存在填充,将出现空白。
我创建了一个完整的博览会项目来展示此问题:https://expo.io/@bartzy/collapsible-tab-view-example 这是Expo项目的Github仓库:https://github.com/bartzy/CollapsibleTabViewExample
以下是示例应用程序的快速视频,显示了切换到选项卡2后的空白填充空间:
对于在如何在制表符之间移动时如何消除空白,同时又保持所需的折叠行为,我深表感谢。
答案 0 :(得分:1)
这是一个常见问题,如何解决此问题的例子很少,但最近我发布了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,
},
});
答案 1 :(得分:0)
您需要保留平面列表的引用,而scolltoOffset的选项卡不清晰。 https://gist.github.com/maitham/6e0841800d88bf9c289fc45bbc903b1d。这似乎对我有用。