I would like to create a Screen with a transparent topBar and want to be able to draw behind it. (React Native Navigation v2)
答案 0 :(得分:0)
您可以使用在视图上启用的透明模式。但是,这种方法需要一点编码。另一种方法是,我通过自定义THIS组件来做类似的事情。让我知道它是否对您有用:)
答案 1 :(得分:0)
class PushedScreen extends Component {
static options(props) {
return {
topBar: {
title: 'Transparent TopBar',
background: {
color: 'transparent',
translucent: true, // iOS only, optional
blur: true // iOS only, optional
}
},
};
}
...
}