反应原生 ScrollView 不滚动没有任何错误

时间:2021-01-29 13:20:32

标签: reactjs react-native

    <ScrollView contentContainerStyle={styles.list}>
    {pastGuesses.map((guess, index) => renderListItem(guess, pastGuesses.length - index))}
    </ScrollView>



    listContainer: {
        flex: 1,
        width: '80%'
    },
    list: {
        flexGrow: 1,
        alignItems: 'center',
        justifyContent: 'flex-end'
    },
    listItem: {
        borderColor: "#ccc",
        borderWidth: 1,
        padding: 15,
        marginVertical: 10,
        backgroundColor: "#fff",
        flexDirection: 'row',
        justifyContent: 'space-around',
        width: "60%"
    }

这里我在 React Native 中使用 ScrollView。 这是我的代码。但是,不幸的是滚动不起作用。 我没有收到任何错误,但 scorll 没有发生。

请看

0 个答案:

没有答案