React Native Gorhom 底板

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

大家好,我正在使用 React Native Gorhom Bottom Sheet,它工作正常,但对我来说有一个问题。当用户打开并降低底部表单模式时,我希望背景改变其颜色,就像当它一直向上时我希望背景变暗,当它降低时我希望它更亮。 它有一个 BackdropComponent,我尝试使用它,但似乎无法弄清楚它对我不起作用。我只是希望模态上升时背景颜色变暗,下降时背景颜色变亮。

react-native modal-dialog bottom-sheet
1个回答
0
投票

也许你可以尝试添加阴影偏移?

shadowOffset: {
  width: ,
  height: ,
},
shadowOpacity: ,
shadowRadius: ,

或使用

containerStyle={{backgroundColor:'red'}}
更改背景颜色。 希望对你有帮助!

© www.soinside.com 2019 - 2024. All rights reserved.