我尝试添加叠加层(例如,向错误弹出窗口/烤面包机/调试按钮等显示)到react-navigation导航器。
但是我有一个问题:
当我将反应导航器放在视图中时,覆盖层位于顶部,反应导航器不会以某种方式出现或失真。
import React, { Component } from 'react';
import { Text, View } from 'react-native';
import { StackNavigator } from 'react-navigation';
class HomeScreen extends React.Component {
static navigationOptions = {
title: 'Welcome',
};
render() {
return <Text>Hello, Navigation!</Text>;
}
}
const SimpleApp = StackNavigator({
Home: { screen: HomeScreen },
});
class SimpleAppWithOverlay extends React.Component {
render() {
return(
<View>
<View style={{position: "absolute", backgroundColor:"transparent", margin:30}}>
<Text>Some Overlay</Text>
</View>
<SimpleApp/>
</View>);
}
}
以下是两个片段,展示了我在实时编辑器中的含义:
您可以在第二个示例中看到,叠加层显示但底层应用程序不可见。
这可以吗?怎么样?
答案 0 :(得分:6)
稍微更改了您的代码
import React, { Component } from 'react';
import { AppRegistry, Text, View } from 'react-native';
import { StackNavigator } from 'react-navigation';
class HomeScreen extends React.Component {
static navigationOptions = {
title: 'Welcome',
};
render() {
return (
<View style={{ flex: 1 }}>
<Text>Hello, Navigation!</Text>
</View>
)
}
}
class SimpleAppWithOverlay extends React.Component {
render() {
return (
<View style={{flex: 1}}>
<SimpleApp />
<View style={{ position: "absolute", backgroundColor: 'rgba(255,0,0,0.4)', top: 0, bottom: 0, left: 0, right: 0 }}>
<Text style={{ paddingTop: 8 }}>Some Overlay</Text>
</View>
</View>
);
}
}
const SimpleApp = StackNavigator({
Home: { screen: HomeScreen },
});
AppRegistry.registerComponent('overlayapp', () => SimpleAppWithOverlay);
你应该注意position: 'absolute'
只是相对于父母的定位而不是像css那样绝对绝对。
如果你想覆盖在navigationBar上方,你可以使用navigationOptions.headerRight做类似的事情。