react-native-root-view-background icon indicating copy to clipboard operation
react-native-root-view-background copied to clipboard

Set background color of root view for react native

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

Installation

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');
  }, []);
}

For Expo users:

They have SystemUI which is similar to this package

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library