Description
Version
react-native-router-flux v3.40.1
react-native-action-button v2.6.10
react-native v0.45.1
Expected behaviour
Hi All!
I am working on a React Native app, using Reatct-Native-Router-Flux for navigation and react-native-action-button for my FAB button.
I am trying to find a way to overlap both NavBar and TabBar (from RNRF) when my react-native-action-button component is clicked. The react-native-action-button component can have a "brackdrop" props which takes another component as a props and displays it.
Actual behavior
Actually, I am using backdrop={} prop where Blur is a simple component like this :
render() {
const width = Dimensions.get('window').width;
const height = Dimensions.get('window').height;
return (
<View style={{ position: 'absolute', top: 0, left: 0, height: height, width: width, backgroundColor: 'black', opacity: 0.7, elevation: 1 }} />
);
}
The issue is that it doesn't overlay neither header nor the footer from RNRF (find attached screenshots).
If you guys have any clue or advice, I would be really grateful !
Have a great day,
Marc