Skip to content

Commit be695c6

Browse files
fix: experiment again with underlaycolor to fix dark background bug on android
2 parents d096c0c + 04e0a80 commit be695c6

File tree

5 files changed

+3
-4
lines changed

5 files changed

+3
-4
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.yarn/install-state.gz

-112 KB
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-ridge-navigation",
3-
"version": "3.0.1",
3+
"version": "3.0.3",
44
"description": "Cross platform react native router with support for render as you fetch",
55
"source": "./src/index.tsx",
66
"main": "./lib/commonjs/index.js",

src/BottomTabsStack.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const TabBarItemStack = React.memo(
8787
return (
8888
<NavigationHandler stateNavigator={navigator}>
8989
<NavigationStack
90-
// underlayColor={layout.backgroundColor} // Disables touchables if returned from background
90+
underlayColor={layout.backgroundColor}
9191
backgroundColor={() => layout.backgroundColor}
9292
renderScene={(state, data) => {
9393
return (

src/NavigationProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ export default function NavigationProvider<ScreenItems extends BaseScreen[]>({
342342
</OptimizedContextProvider>
343343
)}
344344
<NavigationStack
345-
// underlayColor={theme.layout.backgroundColor}
345+
underlayColor={theme.layout.backgroundColor}
346346
backgroundColor={() => theme.layout.backgroundColor}
347347
// unmountStyle={() => ''}
348348
renderScene={(state, data) => {

0 commit comments

Comments
 (0)