admin管理员组

文章数量:1122832

I have modal component with this return section:

import {Modal, SafeAreaView, ScrollView, View, Text} from "react-native";


return (
        <Modal visible={open}
               animationType='slide'
               presentationStyle='pageSheet'
               onRequestClose={close}
        >
            <SafeAreaView>
                <ScrollView>
                  <View><Text>123</Text></View>
                  <View><Text>123</Text></View>
                  <View><Text>123</Text></View>
                  ...
                </ScrollView>
            </SafeAreaView>
        </Modal>
    )

After run: eas build --platform android --profile preview scroll doesn't work in this modal, but on IOS or Expo app it works well.

本文标签: React Native 0762 expo ScrollView doesn39t work on android but works in expo appStack Overflow