FluidTransitions
FluidTransitions copied to clipboard
FluidNavigator has a transparent background
Hello !
When I use createFluidNavigator
as root of my App navigators, I got a transparent background in every page. Hence, I'm seeing my splashscreen as background image.
On the other hand, if I use createStackNavigator
, I got a white background in every page.
Is it something intended to make the transitions ? Or is it something that should be fixed to make createFluidNavigator
with createStackNavigator
?
If you agree that should be fixed I'm fine making a first contribution to fix it :)
when I'm navigating, sometimes I see my splash screen over my current screen. If it had a white screen it, I would see only my splash screen, I guess.
If you use createStackNavigator
, use
cardStyle: { backgroundColor: "transparent", opacity: 1 }, transparentCard: true
you can get a transparent background, but not work in createFluidNavigator
.
Is it possible to let the previous screen stay on the background on navigate to a modal screen like StackNavigator does with transparent card?