Skip to content

Commit

Permalink
fix: ios background color transparent & android as default background…
Browse files Browse the repository at this point in the history
… color (#436)
  • Loading branch information
loatheb authored Mar 29, 2022
1 parent ad79b8d commit dbf3608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kit/src/provider/NavigationProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const NavigationApp = () => {
...DefaultTheme,
colors: {
...DefaultTheme.colors,
background: platformEnv.isNative ? bgDefault : 'transparent',
background: platformEnv.isAndroid ? bgDefault : 'transparent',
card: bgColor,
text: textColor,
},
Expand Down

0 comments on commit dbf3608

Please sign in to comment.