React native full screen view for android
npm install react-native-fullscreen-chz
sh
yarn add react-native-fullscreen-chz
OR
npm install react-native-fullscreen-chz --save
`
Usage
$3
#### Goto android / app / res / values / styles.xml
`diff
-
+
`
`js
import FullScreenChz from 'react-native-fullscreen-chz';
FullScreenChz.enable()
FullScreenChz.disable() // To disable
`
Full Example
`xml
`
`js
import React from 'react';
import {Button, View} from 'react-native';
import FullScreenChz from 'react-native-fullscreen-chz';
const App = () => {
return (
title="Foo"
onPress={() => {
FullScreenChz.enable();
//FullScreenChz.disable(); to Disable full screen view
}}
/>
);
};
export default App;
``