I\'m using react-navigation and stack-navigator to manage my screens.
Platforms I\'m using:
This was really changed in latest React Navigation versions. See
https://reactnavigation.org/docs/themes/
For example
import * as React from 'react';
import { NavigationContainer, DefaultTheme } from '@react-navigation/native';
const MyTheme = {
...DefaultTheme,
colors: {
...DefaultTheme.colors,
background: 'red'
},
};
export default function App() {
return (
{/* content */}
);
}