反应原生平面列表在android中不可滚动

时间:2021-07-26 18:43:18

标签: android react-native

我正在 React Native 中处理 flatlist。其中的项目是贴纸,它是 svg 文件,用 svgr 转换为 react native svg 组件。

import { stickerInfos } from "@components/common/stickers/sticker-renderer.data";
import StickerRenderer from "@components/common/stickers/sticker-renderer";
import React from "react";
import { StyleSheet } from "react-native";
import { FlatList, ListRenderItem, View } from "react-native";
import StickerButton from "./sticker-list/sticker-button";
import { SvgProps } from "react-native-svg";
import { RootState } from "@redux/root-reducer";
import { connect, ConnectedProps } from "react-redux";
import StickerCategories from "./sticker-list/sticker-categories";



const Divider = () => <View style={styles.divider}></View>;

const ListHeaderComponent = () => <View style={styles.listHeader}></View>;

const ListFooterComponent = () => <View style={styles.listFooter}></View>;
  
const keyExtractor = (item: string) => item;

type StickerListReduxProps = ConnectedProps<typeof connector>

interface StickerListProps extends StickerListReduxProps {}
  
const StickerList: React.FC<StickerListProps> = ({
  stickerCategoryCurrent
}) => {

  const svgProps: SvgProps = {
    preserveAspectRatio: "xMidyMid meet",
    style: {
      justifyContent: "center",
      alignItems: "center",
    },
  };

  const renderItem: ListRenderItem<string> = ({ item: stickerId }) => (
    <StickerButton
      stickerId={stickerId}
    >
      <StickerRenderer 
        stickerId={stickerId} 
        svgProps={svgProps}
      />
    </StickerButton>
  );

  const filteredStickerIds = stickerInfos.reduce(
    (acc, [stickerId, stickerCategory]) => 
      stickerCategoryCurrent === "all" || stickerCategoryCurrent === stickerCategory ? [...acc, stickerId] : acc,
    [] as string[]
  );

  return <View style={styles.root}>
    <View style={styles.categoriesWrapper}>
      <View style={styles.innerWrapper}>
        <StickerCategories />
      </View>
    </View>
    <View style={styles.listWrapper}>
      <View style={styles.innerWrapper}>
        <FlatList 
          data={filteredStickerIds}
          renderItem={renderItem}
          ItemSeparatorComponent={Divider}
          horizontal={false}
          numColumns={3}
          keyExtractor={keyExtractor}
          ListHeaderComponent={ListHeaderComponent}
          ListFooterComponent={ListFooterComponent}
          contentContainerStyle={styles.contentContainer}
          scrollEnabled={true}
        />
      </View>
    </View>
  </View>;
};

const mapStateToProps = (state: RootState) => ({
  stickerCategoryCurrent: state.editor.generic.stickerCategoryCurrent
});

const connector = connect(mapStateToProps);

export default connector(StickerList);

const styles = StyleSheet.create({
  divider: {
    width: 50,
    height: 50
  },
  contentContainer: {
    justifyContent: "flex-start",
    alignContent: "space-between"
  },
  root: {
    justifyContent: "center",
    alignItems: "center",
    flex: 1
  },
  categoriesWrapper: {
    justifyContent: "center",
    alignItems: "center",
    flexDirection: "row",
    flex: 1,
    width: "100%"
  },
  listWrapper: {
    justifyContent: "center",
    alignItems: "center",
    flex: 10,
    height: "100%"
  },
  listHeader: {
    width: 1,
    height: 20
  },
  listFooter: {
    width: 1,
    height: 50
  },
  innerWrapper: {
    flex: 1
  }
});

上述代码片段中的 flatlist 在 ios 上运行良好,但不适用于 android。我真的不明白为什么。这是由于两个平台之间flatlist功能实现的差异造成的吗?还是只是 javascript 的问题?

0 个答案:

没有答案
相关问题