When i use JS debugger, i found the grey background color value is contained within the ThemeProvider,so i search this keyword,finally,problem solved by useing following code:
const MyTheme = {
...DefaultTheme,
colors: {
...DefaultTheme.colors,
background: 'transparent',
},
};
<NavigationContainer
style={{ backgroundColor: 'transparent' }}
theme={MyTheme}
>
...