在@gorhom/bottom-sheet 中滚动内容 - React Native

问题描述 投票:0回答:1

我正在尝试在底部表 (@gorhom/bottom-sheet) 中实现评论部分。 我面临的问题是,当我尝试滚动内容(评论)时,它不起作用,而是底部工作表折叠起来。

这是我试过的:

      <BottomSheet
        ref={bottomSheetRef}
        index={0}
        snapPoints={snapPoints}
        onChange={handleSheetChanges}
      >
        <View style={styles.contentContainer}>
          <Text>{comments} Comments</Text>
          <Comments />
        </View>
      </BottomSheet>
reactjs react-native bottom-sheet react-native-scrollview
1个回答
0
投票
© www.soinside.com 2019 - 2024. All rights reserved.