Looking for some assistance with my project! I have a simple project that requires gradient colors in the header background. Check it out here and please help me with adding the gradient colors :)
import { LinearGradient } from 'expo-linear-gradient';
const Stack = createStackNavigator();
const standardColor = {
headerStyle: { backgroundColor: "blue"}
};
export default function App() {
return (
<NavigationContainer>{/* Rest of your app code */}
<Stack.Navigator screenOptions ={standardColor}>
<Stack.Screen name ="Welcome" component={welcomeScreen} />
<Stack.Screen name ="Home" component={homeScreen} />
</Stack.Navigator>
</NavigationContainer>
);
}