@pnthach95/react-native-root-view-background

Set root view background color for Android and iOS

Usage no npm install needed!

<script type="module">
  import pnthach95ReactNativeRootViewBackground from 'https://cdn.skypack.dev/@pnthach95/react-native-root-view-background';
</script>

README

React Native Root View Background

Original: https://github.com/johniak/react-native-root-view-background

Remake to support React Native latest version.

Set background color of root view to fix white flash when using dark theme and navigating with React Navigation. Read more in example.

After

react-native-gifted-chat

Before

react-native-gifted-chat

Getting started

npm i @pnthach95/react-native-root-view-background --save

or

yarn add @pnthach95/react-native-root-view-background

Usage

import { setRootViewBackgroundColor } from '@pnthach95/react-native-root-view-background';

const Main = () => {
  useEffect(() => {
    setRootViewBackgroundColor('#ccc');
  }, []);
}

License

MIT