Wrap components with webView on each screen. You can give customized background images, background colors, back button or title.
npm install react-native-main-viewReact Native Main View is used to wrap components with customized background images, background colors, back buttons, or titles.
Example usage:
```jsx
import MainView from 'react-native-main-view';
// ...
header={{
title: "Example Title",
titleStyle: { color: "black" },
backIcon: require("./src/background.jpeg"),
backPress: () => console.log("Click Press")
}}
>
{/ Component content can go here /}