react-native – android的绝对位置

我正在尝试创建一个看起来像附加图片的屏幕.我使用的样式代码仅适用于iOS,但不适用于
Android.

可以在此处找到带预览的示例代码:https://snack.expo.io/@tushark/absolute-android

请检查iOS和Android.

这是我想要创建的布局.

《react-native – android的绝对位置》

最佳答案 我从这里给出的示例代码创建了一个新的Expo项目:
https://snack.expo.io/S1yDf4Q47

在AbsoluteView组件上添加另一个View来处理显示屏幕:

<View style={styles.container}>
  <View style={{borderColor:'transparent'}}> // add borderColor, or the screen looks weird on android (i don't know why)
    {View of card, row, title and content styles}
  </View>
  <OrangeButton
      label="CONFIRM"
      onPress={() => console.log('Pressed')}
      styleButton={styles.loginBtn}
  />
</View>

和按钮组件我改变底部:-20到顶部:宽度/ 3,

和布局看起来像:

Android:

《react-native – android的绝对位置》

iOS版:

《react-native – android的绝对位置》

点赞