如何在React Native中为position: “absolute”
使用ScrollView
风格?
我使用此代码显示空白页:
<ScrollView style={{flex:1}}>
<View
style={{
position:"absolute",
top:0,
right:0,
width:100,
height:100,
backgroundColor:'red',
}}
/>
....
....
....
</ScrollView>