20

我正在尝试创建一个FlatList在其周围有一些间距的水平线。我能够在列表上获得正确的开始间距paddingLeft,但paddingRight在列表上似乎没有在其后放置任何空格(如果我一直滚动到最后,最后一项被压在边框上)。

这是一个小吃,您可以运行并现场试用:https ://snack.expo.io/@saadq/aW50cm

这是我的代码:

import * as React from 'react';
import { Text, View, FlatList, StyleSheet } from 'react-native';

const data = [{ key: 1 }, { key: 2 }, { key: 3 }, { key: 4 }];

class App extends React.Component {
  render() {
    return (
      <View style={styles.container}>
        <FlatList
          style={styles.flatList}
          horizontal
          data={data}
          renderItem={() => (
            <View style={styles.box}>
              <Text>Box</Text>
            </View>
          )}
        />
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
  },
  flatList: {
    marginTop: 100,
    paddingLeft: 15,
    paddingRight: 15, // THIS DOESN'T SEEM TO BE WORKING
    // marginRight: 15   I can't use marginRight because it cuts off the box with whitespace
  },
  box: {
    display: 'flex',
    justifyContent: 'center',
    alignItems: 'center',
    height: 50,
    width: 100,
    borderWidth: 1,
    borderColor: 'black',
    paddingHorizontal: 15,
    marginRight: 15,
  },
});

export default App;

使用marginRight而不是paddingRight似乎确实给出了预期的间距结果,但是它会导致一个不同的问题,即空白始终存在并在滚动时切断项目。任何帮助,将不胜感激!

4

6 回答 6

34

似乎我能够通过使用contentContainerStyle道具FlatList而不是style直接将道具传递给它来修复它。

于 2018-11-09T08:46:50.690 回答
14
contentContainerStyle={{paddingBottom:xxx}} 
于 2020-01-30T13:36:03.293 回答
11

您可以使用“ListFooterComponent”。它是 Flatlist 的一个道具,作为 Flatlist 的最后一个组件。因此,您可以将宽度为 15 的空视图传递给它,以获得正确的边距工作。尝试这个:

<FlatList
      style={styles.flatList}
      horizontal
      data={data}
      renderItem={() => (
        <View style={styles.box}>
          <Text>Box</Text>
        </View>
      )}
      ListFooterComponent={<View style={{width:15}}></View>}

重要的代码行是这样的:

ListFooterComponent={<View style={{width:15}}></View>
于 2018-11-09T08:46:28.300 回答
2
<FlatList
  // extraData={this.props.x}
  contentContainerStyle={{paddingBottom: 10, paddingTop: 8}}
  data={contacts}
  removeClippedSubviews={false}
  keyExtractor={(item, index) => index.toString()}
  // onRefresh={false}
  renderItem={({item}) => (
    <View
      style={{
        flex: 1,
        flexDirection: 'row',
        justifyContent: 'space-between',
        // margin: 3,
        marginVertical: 5,
        marginHorizontal: 4,
        // borderWidth: 1,
        // borderColor: '#d6d7da',
        borderRadius: 7,
        // padding: 1,
        // borderRightWidth: 1, borderRightColor: '#d6d7da'
      }}>
     <Text>HOLA</Text>
    </View>
  )}
/>
于 2020-04-29T01:39:50.400 回答
1

我使用这种方法来解决问题:

 ItemSeparatorComponent={() => <View style={{ width: 35 }} />}
于 2021-08-07T23:54:56.263 回答
1

您可以使用 contentInsets 属性调整 FlatList、SectionList、ScrollView 的 contentInsets。https://facebook.github.io/react-native/docs/scrollview#contentinset

例如

<FlatList
  data={...}
  renderItem={...}
  horizontal={true}
  contentInset={{ right: 20, top: 0, left: 0, bottom: 0 }}

/>
于 2020-01-14T15:44:42.520 回答